Skip to content

Commit

Permalink
chore: Add package lock for CI versioning (#27)
Browse files Browse the repository at this point in the history
* Add package-lock.json to repo

* use `npm ci` in workflows
  • Loading branch information
simondotm authored Feb 12, 2024
1 parent 2e23c28 commit 5f4fdfa
Show file tree
Hide file tree
Showing 4 changed files with 9,107 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
node-version: 18
- name: Install npm
run: npm install
run: npm ci

- name: Build
run: npm run package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: 18
- run: npm install
- run: npm ci

# Build the package
- name: Build
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ node_modules
.vscode-test
out
dist
package-lock.json
.DS_Store
Loading

0 comments on commit 5f4fdfa

Please sign in to comment.