chore(deps): update dependency @types/node to v22 #1674
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: Check | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
name: Run check project | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
- name: Launch Turbo Remote Cache Server | |
uses: dtinth/setup-github-actions-caching-for-turbo@v1.3.0 | |
- name: Install and cache nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
with: | |
version: 9.2.0 | |
run_install: false | |
- name: Install packages | |
run: pnpm i --ignore-scripts | |
- name: Check project | |
run: | | |
pnpm run ci-check |