chore(deps): update dependency eslint to v9 #427
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: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
api: [options, class, composition] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run initializing script | |
run: COMPONENT_API=${{ matrix.api }} ./init.sh | |
- run: npm install | |
- name: Run lint | |
run: npm run lint | |
- name: Run static site generation | |
run: npm run generate |