upgrade to handle seasons #19
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: Project Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
all-tests: | |
name: Run all project tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7.16.1 | |
- name: Install dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Execute tests | |
run: pnpm run test |