chore(deps): update devdependency eslint to v9 (v7) #6747
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
push: | |
branches: | |
- v7 | |
pull_request: | |
branches: | |
- v7 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
strategy: | |
matrix: | |
node-version: [18.x] | |
name: Use Node.js ${{ matrix.node-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: yarn install | |
run: yarn | |
- name: test:types | |
run: yarn test:types | |
- name: test:unit | |
run: yarn test:unit | |
- name: test:e2e-ssr | |
run: yarn test:e2e-ssr | |
- name: test:e2e-browser | |
run: yarn test:e2e-browser | |
- name: Linting | |
# Only test on one version to avoid duplicate linter annotations. | |
if: ${{ matrix.node-version == '18.x' }} | |
run: yarn lint |