Skip to content

Commit

Permalink
chore: check file changes in test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sixmen committed Dec 20, 2024
1 parent 8c71fa9 commit f0eb5cb
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '22'
cache: npm

- name: Install packages
Expand All @@ -33,3 +33,12 @@ jobs:

- name: Run unit test
run: npm run test:unit

- name: Check file changes
run: |
npm run build
npx prettier --version
npx prettier --check . || exit 100
git status --short
git diff
git diff --quiet

0 comments on commit f0eb5cb

Please sign in to comment.