Skip to content

Commit 81521cd

Browse files
committed
Update lint.yml
1 parent 859db51 commit 81521cd

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/lint.yml

+24
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,27 @@ jobs:
1717
name: Lint VSCode
1818
- run: npm run lint-frontend
1919
name: Lint Frontend
20+
21+
build:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-node@v4
26+
with:
27+
node-version: 20
28+
- run: npm install
29+
- run: npm install
30+
working-directory: ./frontend
31+
- run: npm run package
32+
33+
test:
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/checkout@v4
37+
- uses: actions/setup-node@v4
38+
with:
39+
node-version: 20
40+
- run: npm install
41+
- run: npm install
42+
working-directory: ./frontend
43+
- run: npm run test

0 commit comments

Comments
 (0)