Skip to content

Commit a6b48ef

Browse files
committed
change test progress-bar
1 parent fce7f87 commit a6b48ef

2 files changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/verify.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Verify lib
2+
on:
3+
push:
4+
branches:
5+
- dev
6+
7+
jobs:
8+
build:
9+
name: Test library
10+
runs-on: ubuntu-latest
11+
env:
12+
CI: true
13+
FORCE_COLOR: 3
14+
NO_COLOR: false
15+
TERM: xterm-256color
16+
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v3
20+
21+
- uses: actions/setup-node@v4
22+
with:
23+
node-version: 20
24+
25+
- name: Install dependencies
26+
run: npm install
27+
28+
- name: Test
29+
run: npm test:ci

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"dev": "npm run clean && cross-env NODE_NO_WARNINGS=1 MODE=development node build.js",
3636
"pub": "npm publish --access public",
3737
"test": "latte --dom --progress=none",
38+
"test:ci": "latte --dom --progress=none",
3839
"test:trace": "latte --dom --progress=dots --show-stack --verbose",
3940
"check": "npx @biomejs/biome check --write ./source",
4041
"commit": "node -e \"const mssg = process.argv[1]; require('child_process').execSync('npm run build && git add . && git commit -m \\\"' + mssg + '\\\"', { stdio:[0, 1, 2] })\""

0 commit comments

Comments
 (0)