This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
chore(deps): bump @scalar/api-reference from 1.17.16 to 1.19.1 #61
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: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20, 21] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
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 | |
- if: matrix.node-version == 20 | |
name: Check code style | |
run: pnpm format:check | |
- name: Build | |
run: pnpm turbo build | |
- name: Check types | |
run: pnpm turbo types:check | |
- name: Run tests | |
run: pnpm test |