Skip to content

Commit 2d8d1fe

Browse files
committed
refactor: replace yarn actions with npm commands for dependency management and testing
1 parent 830e296 commit 2d8d1fe

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/node.js.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,9 @@ jobs:
2424
uses: actions/setup-node@v3
2525
with:
2626
node-version: ${{ matrix.node-version }}
27-
- name: Run install
28-
uses: borales/actions-yarn@v4
29-
with:
30-
cmd: install
27+
- name: Install dependencies
28+
run: npm ci
3129
- name: Build production bundle
32-
uses: borales/actions-yarn@v4
33-
with:
34-
cmd: build
30+
run: npm run build
3531
- name: Test the app
36-
uses: borales/actions-yarn@v4
37-
with:
38-
cmd: test
32+
run: npm test

0 commit comments

Comments
 (0)