feat(Next > TypeScript): Add TypeScript with strict enabled #13
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: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
lint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: "next/.nvmrc" | |
- name: 📥 Download deps | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: next | |
- name: Lint | |
run: npm run lint:ci | |
working-directory: next | |
typecheck: | |
name: TypeScript | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: "next/.nvmrc" | |
- name: 📥 Download deps | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: next | |
- name: 🔎 Type check | |
run: npm run typecheck --if-present | |
working-directory: next | |
unittest: | |
name: Jest | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: "next/.nvmrc" | |
- name: 📥 Download deps | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: next | |
- name: Unit Test runner | |
run: npm run test:ci | |
working-directory: next |