chore(deps): bump @scalar/fastify-api-reference from 1.25.66 to 1.25.105 #198
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] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run hadolint | |
shell: bash | |
continue-on-error: true | |
run: | | |
docker pull hadolint/hadolint | |
docker run --rm -i hadolint/hadolint < Dockerfile | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Set up GitHub Actions caching for Wireit. | |
uses: google/wireit@setup-github-actions-caching/v2 | |
- name: Install dependencies | |
run: npm ci | |
- name: Validate PR commits with commitlint | |
if: github.event_name == 'pull_request' | |
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose | |
- name: Check the types | |
run: npm run typecheck | |
- name: Run tests | |
run: npm run test -- --run |