Skip to content

Commit

Permalink
fix: format check on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Mar 4, 2022
1 parent ceb55ad commit 130ac9c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16'
node-version: "16"
- name: Install dependencies
run: npm install
- name: Run Eslint
run: npm run lint
run: |
npm run lint
npm run format-check
test:
runs-on: ubuntu-latest
strategy:
matrix:
nodeversion: ['12', '14', '16', '17']
nodeversion: ["12", "14", "16"]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
Expand Down

0 comments on commit 130ac9c

Please sign in to comment.