chore(deps): update dependency @eslint/eslintrc to v3.3.6 #611
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: Release | |
| on: pull_request | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '22' | |
| - name: Setup Corepack | |
| run: | | |
| npm install -g corepack@latest | |
| corepack enable | |
| corepack prepare --activate | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build project | |
| run: pnpm run build | |
| - name: Lint project | |
| run: pnpm run lint | |
| - name: Test project | |
| run: pnpm run test | |
| - name: Coverage | |
| uses: coverallsapp/github-action@master | |
| env: | |
| github-token: ${{ secrets.GH_TOKEN }} |