Skip to content

Commit

Permalink
ci: use npm
Browse files Browse the repository at this point in the history
  • Loading branch information
coston committed Feb 28, 2023
1 parent 2239b3e commit 5436b55
Show file tree
Hide file tree
Showing 5 changed files with 9,959 additions and 9,271 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nodejs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Node.js CI

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:
Expand All @@ -15,6 +15,6 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test
- run: npm install --frozen-lockfile
- run: npm run build
- run: npm run test
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
node-version: 'lts/*'
- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install --frozen-lockfile
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading

0 comments on commit 5436b55

Please sign in to comment.