Skip to content

Commit

Permalink
feat: rename npm ci to npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
cstrnt committed Sep 8, 2021
1 parent 3632520 commit 7513672
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
token: ${{ secrets.ACTION_GITHUB_TOKEN }}
# Install all dependencies
- name: install
run: npm ci
run: npm install
# Transpile all specs from ts to js
- name: build
run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm ci
- run: npm install
- run: npm run lint
12 changes: 6 additions & 6 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm ci
- run: npm test
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm install
- run: npm test

0 comments on commit 7513672

Please sign in to comment.