Update README.md with CSP notes #102
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: Pull Request | |
on: | |
push: | |
branches: | |
- '**' | |
- '!main' | |
pull_request: | |
branches: | |
- '**' | |
- '!main' | |
jobs: | |
setup: | |
name: Setup | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out branch | |
uses: actions/checkout@v3 | |
- name: Setup environment and dependencies | |
uses: ./.github/actions/setup | |
test_style: | |
name: Lint & Typecheck | |
runs-on: ubuntu-latest | |
needs: [setup] | |
steps: | |
- name: Check out branch | |
uses: actions/checkout@v3 | |
- name: Setup environment and dependencies | |
uses: ./.github/actions/setup | |
- name: Check Lint | |
run: pnpm run test:lint | |
- name: Check Types | |
run: pnpm run test:types | |
test_unit: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
needs: [setup] | |
steps: | |
- name: Check out branch | |
uses: actions/checkout@v3 | |
- name: Setup environment and dependencies | |
uses: ./.github/actions/setup | |
- name: Run Unit Tests | |
run: pnpm run test:unit |