Skip to content

Update eslint 8.14.0 β†’ 8.54.0 (minor) #425

Update eslint 8.14.0 β†’ 8.54.0 (minor)

Update eslint 8.14.0 β†’ 8.54.0 (minor) #425

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [14.x, 16.x, 18.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install npm dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Run tests
run: npm test
env:
TEST_MODE: true
- name: Coveralls (parallel)
uses: coverallsapp/github-action@v1.1.1
env:
COVERALLS_FLAG_NAME: run-${{ matrix.test_number }}
with:
github-token: ${{ secrets.github_token }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true