Skip to content

chore(deps-dev): bump eslint from 9.0.0 to 9.5.0 #93

chore(deps-dev): bump eslint from 9.0.0 to 9.5.0

chore(deps-dev): bump eslint from 9.0.0 to 9.5.0 #93

Workflow file for this run

name: 'CI'
on: push
jobs:
test:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['20.x']
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install
run: yarn install --frozen-lockfile --silent
- name: Build
run: yarn build
- name: Lint
run: yarn test:lint
- name: Test
run: yarn test:jest --ci --coverage --maxWorkers=2