chore(deps): update all dependencies #1251
This file contains hidden or 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 | |
| - pull_request | |
| jobs: | |
| ci: | |
| name: Lint and Test with Node.js ${{ matrix.node }} | |
| strategy: | |
| matrix: | |
| node: | |
| - 18 | |
| - 20 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - name: Setup Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: yarn | |
| - name: Install Dependencies | |
| run: yarn --frozen-lockfile | |
| - name: Build and Lint | |
| run: yarn run-s build lint | |
| env: | |
| EFF_NO_LINK_RULES: true | |
| PARSER_NO_WATCH: true | |
| - name: Codecov | |
| uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5 |