Skip to content

Commit 761fc24

Browse files
committed
ci: npm usage
1 parent 07fac31 commit 761fc24

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
- run: sudo apt install -y openssh-server && sudo systemctl start ssh
2020
- run: ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519 -N ''
2121
- run: cat ~/.ssh/id_ed25519.pub > ~/.ssh/authorized_keys
22-
- run: yarn --frozen-lockfile
23-
- run: yarn run test
22+
- run: npm ci
23+
- run: npm run test
2424
publish:
2525
needs: [test]
2626
if: startsWith(github.ref, 'refs/tags/v')

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ jobs:
3232
- run: sudo apt install -y openssh-server && sudo systemctl start ssh
3333
- run: ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519 -N ''
3434
- run: cat ~/.ssh/id_ed25519.pub > ~/.ssh/authorized_keys
35-
- run: yarn --frozen-lockfile
36-
- run: yarn run test
35+
- run: npm ci
36+
- run: npm run test

0 commit comments

Comments
 (0)