specified shell on pnpm installation command #4
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: Lint | |
on: | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# Single deploy job since we're just deploying | |
typecheck: | |
name: Type check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up pnpm | |
uses: "./.github/actions/setup-pnpm" | |
- name: Build | |
run: pnpm build | |
env: | |
BASE_URL: ${{ github.event.repository.name }} | |
- name: Type check | |
run: pnpm typecheck |