Release 6.9 #2058
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: | |
| branches: | |
| - main | |
| pull_request: | |
| env: | |
| NODE_VERSION: 22 | |
| jobs: | |
| lint: | |
| name: Lint files | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 3 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: 'pnpm' | |
| node-version: ${{ env.NODE_VERSION }} | |
| - run: pnpm install | |
| - run: pnpm run lint | |
| test-app: | |
| name: Test app | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 3 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: 'pnpm' | |
| node-version: ${{ env.NODE_VERSION }} | |
| - run: pnpm install | |
| - name: Test | |
| run: pnpm run test |