Skip to content

chore(deps): update dependency eslint to v9 #1681

chore(deps): update dependency eslint to v9

chore(deps): update dependency eslint to v9 #1681

Workflow file for this run

name: Test
on:
push:
branches: # Array of patterns that match refs/heads
- master # Push events on master branch
pull_request: # Specify a second event with pattern matching
env:
CI: true
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Restore Dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{matrix.node-version}}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{matrix.node-version}}-
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run jest
- run: npm run examples
- run: npm run benchmarks
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-unit-${{ matrix.node-version }}
parallel: true
finish:
needs: unit
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true