chore(deps): update all non-major dependencies #3753
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
# This workflow doesn't produce or publish any artifacts, nor is it involved in the deployment process. | |
# It's here to provide rapid feedback that the committed code is valid: | |
# - dependencies install | |
# - typescript compiles | |
name: Sanity Check | |
on: | |
push: | |
pull_request: | |
branches: [master, prod] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3 | |
- name: Use Node.js | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
with: | |
node-version-file: ".node-version" | |
cache: pnpm | |
- run: pnpm install | |
- run: pnpm check | |
- run: pnpm test |