types(test): reject
isn't required
#225
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: 'ci' | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
unit-test: | |
# let's ignore release commits, otherwise it'll try to run twice | |
if: | | |
!startsWith(github.event.head_commit.message , 'chore(release):') && | |
!startsWith(github.event.head_commit.message , 'docs') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup cache for Chromium binary | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/puppeteer/chrome | |
key: chromium-${{ hashFiles('pnpm-lock.yaml') }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: false | |
- name: Set node version to latest | |
uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
cache: 'pnpm' | |
- run: pnpm install | |
- name: Run typecheck | |
run: npm run typecheck | |
- name: Run unit tests | |
run: npm run test -- --package-name '*' | |
- name: Run build | |
run: npm run build | |