chore(deps): lock file maintenance #2075
Workflow file for this run
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: test | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| unit: | |
| name: unit / ${{matrix.os}} / node v${{matrix.node_version}} | |
| runs-on: ${{matrix.os}} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| node_version: [20, 22, 24] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - name: Set up env | |
| uses: the-guild-org/shared-config/setup@v1 | |
| with: | |
| node-version: ${{ matrix.node_version }} | |
| - name: Build dependencies | |
| run: pnpm run build | |
| - name: Run Tests | |
| run: pnpm run test | |
| - name: Run TS Smoke Tests | |
| run: pnpm run test:ts | |
| - name: Lint Prettier | |
| run: pnpm run lint:prettier | |
| - name: Lint ESLint | |
| run: pnpm run lint |