Skip to content

Commit 6a51280

Browse files
authored
Update GitHub Actions workflow to use yarn
1 parent b78e7c3 commit 6a51280

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Test
22

3-
on:
4-
push:
5-
pull_request:
3+
on: [push]
64

75
jobs:
86
build:
@@ -11,7 +9,5 @@ jobs:
119
- uses: actions/checkout@v4
1210
- name: Setup Nodejs
1311
uses: actions/setup-node@v4
14-
with:
15-
cache: 'npm'
16-
- run: npm ci
17-
- run: npm test
12+
- run: yarn install
13+
- run: yarn test

0 commit comments

Comments
 (0)