chore(deps): bump node from 16.19-alpine to 21.6-alpine #1803
Workflow file for this run
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: Test | |
on: | |
workflow_call: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-ts: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.3.0 | |
- name: Setup node environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16.19 | |
cache: "pnpm" | |
- name: Fetch dependencies | |
run: | | |
pnpm install | |
- name: Test typescript | |
run: | | |
pnpm test |