chore(deps): update node.js to v22.13.0 #1759
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: Lerna Push & Pull Request | |
on: | |
push: | |
branches-ignore: | |
- main | |
pull_request: | |
jobs: | |
prepare_branch: | |
name: Prepare branch | |
runs-on: ubuntu-latest | |
env: | |
CI: 'true' | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Lint | |
run: pnpm lint | |
- name: build | |
run: pnpm lerna:build | |
- name: Run Node TAP tests | |
run: pnpm test |