Skip to content

Bump eslint from 8.15.0 to 8.43.0 #318

Bump eslint from 8.15.0 to 8.43.0

Bump eslint from 8.15.0 to 8.43.0 #318

Workflow file for this run

name: Test Changes
on: [push, pull_request]
env:
SAUCE_USERNAME: ${{secrets.SAUCE_USERNAME}}
SAUCE_ACCESS_KEY: ${{secrets.SAUCE_ACCESS_KEY}}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- name: Clone Repository
uses: actions/checkout@v2
- name: Setup Node version
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- run: npm run build
- name: Run tests
run: npm test