This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
feat: better error messages #10
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: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
# - name: Turborepo cache | |
# uses: dtinth/setup-github-actions-caching-for-turbo@v1 | |
- name: Check code style | |
run: pnpm format:check | |
- name: Build | |
run: pnpm build | |
- name: Check types | |
run: pnpm types:check | |
- name: Cache example files | |
id: cache-example-files | |
uses: actions/cache@v4 | |
with: | |
path: tests/files | |
key: ${{ runner.os }}-example-files | |
- name: Fetch example files | |
if: steps.cache-example-files.outputs.cache-hit != 'true' | |
run: pnpm fetch:files | |
- name: Run tests | |
run: pnpm test |