chore(deps): bump sanity from 3.42.1 to 3.50.0 #31
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: Units Tests | |
on: | |
pull_request: | |
paths: | |
- apps/** | |
- packages/** | |
jobs: | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
# Throw an error if the yarn.lock file doesn't match the installed dependencies (rather than updating it in-place, which it does by default locally) | |
- name: Install | |
run: pnpm install --no-frozen-lockfile | |
- name: Test | |
run: pnpm test:run --passWithNoTests |