Skip to content

Commit

Permalink
infra: improve GitHub Actions CI to show commands in different collap…
Browse files Browse the repository at this point in the history
…sible sections
  • Loading branch information
trusktr committed Oct 31, 2023
1 parent a8553bf commit d719b3b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,21 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: lts/* # Test on the current LTS version.
- name: npm install, build, and test
- name: install
run: |
npm run fresh
- name: check formatting
run: |
npm run prettier:check:all
- name: build
run: |
npm run clean:all
npm run build:all
- name: test
run: |
npm run test:all
- name: ensure no modifications
run: git add . && git diff --quiet && git diff --cached --quiet
- name: check repo is clean
run: |
git add . && git diff --quiet && git diff --cached --quiet
env:
CI: true

0 comments on commit d719b3b

Please sign in to comment.