feat: enabled typescript strict mode #1226
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
name: Build | |
steps: | |
- name: Checkout current commit/branch/tag | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm install | |
env: | |
NODE_ENV: development | |
- name: Run typecheck | |
run: npm run typecheck | |
- name: Run linter | |
run: npm run lint | |
- name: Run prettier | |
run: npm run prettier:check | |
- name: Run tests | |
run: npm run test | |
- name: Build app | |
run: npm run build | |
env: | |
NODE_ENV: production |