Skip to content

Commit ee4dacd

Browse files
authored
Build: Use yarn instead of npm in CI
1 parent 809e398 commit ee4dacd

File tree

1 file changed

+16
-9
lines changed

1 file changed

+16
-9
lines changed

.github/workflows/node.js.yml

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3-
4-
name: Node.js CI
1+
name: Starter CI
52

63
on:
74
push:
@@ -24,8 +21,18 @@ jobs:
2421
uses: actions/setup-node@v1
2522
with:
2623
node-version: ${{ matrix.node-version }}
27-
- run: npm install
28-
- run: npm run lint-js
29-
- run: npm run lint-scss
30-
- run: npm run unit
31-
- run: npm run build
24+
- uses: borales/[email protected]
25+
with:
26+
cmd: install
27+
- uses: borales/[email protected]
28+
with:
29+
cmd: lint-js
30+
- uses: borales/[email protected]
31+
with:
32+
cmd: lint-scss
33+
- uses: borales/[email protected]
34+
with:
35+
cmd: unit
36+
- uses: borales/[email protected]
37+
with:
38+
cmd: build

0 commit comments

Comments
 (0)