Skip to content

Commit 493df33

Browse files
committed
Update node-js.yml
1 parent dcd4ac0 commit 493df33

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/node-js.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
33

4-
name: "Node.js Build"
4+
name: Node.js Build
55

66
on:
7+
workflow_dispatch:
78
push:
89
branches:
910
- "main"
@@ -29,6 +30,7 @@ jobs:
2930
node-version: ${{ matrix.node-version }}
3031
cache: 'npm'
3132
- run: npm ci
32-
- run: npm run lint
33-
- run: npm run build
34-
- run: npm run prod
33+
- run: npm run lint:js
34+
- run: npm run lint:ts
35+
- run: npm run build:dev
36+
- run: npm run build:prod

0 commit comments

Comments
 (0)