Update word #161 #575
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: App CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '20.x' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run linter check | |
run: npm run linter-check | |
- name: Run format code check | |
run: npm run format-code-check | |
- name: Run unit tests | |
run: npm run test:unit |