ci: remove type check #16
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: Portal Client CI | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # 👈 Required to retrieve git history | |
- name: Use Node.js 18.19 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.19 | |
- name: Install Dependencies | |
run: npm i | |
- name: EsLint Check | |
run: npm run lint | |
- name: Prettier Check | |
run: npm run format:check | |
- name: Run Test | |
run: npm test |