update nanoid #1932
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: API-build | |
on: [push] | |
jobs: | |
build: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node 20.x Environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- name: Install dependencies | |
working-directory: ./api | |
run: npm ci | |
- name: Run tsc to check for typescript errors | |
working-directory: ./api | |
run: npx tsc --noemit | |
prettier: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node 20.x Environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- name: Install dependencies | |
working-directory: ./api | |
run: npm ci | |
- name: Run prettier check | |
working-directory: ./api | |
run: npm run format:check | |
eslint: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node 20.x Environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- name: Install dependencies | |
working-directory: ./api | |
run: npm ci | |
- name: Run lint | |
working-directory: ./api | |
run: npm run lint:check |