Merge branch 'main' of https://github.com/hiddenist/drawing-app into … #187
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: Verify | |
on: | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up pnpm | |
uses: "./.github/actions/setup-pnpm" | |
- name: Verify TypeScript types | |
run: pnpm type-check | |
- name: Check for linting errors | |
run: pnpm lint | |
- name: Run unit tests | |
run: pnpm test | |
- name: Verify that build succeeds | |
run: pnpm build | |
env: | |
BASE_URL: ${{ github.event.repository.name }} |