Skip to content

Commit

Permalink
fix: generate project-lock.json
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerFlar committed Jan 13, 2025
1 parent f01430d commit 299fee4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/eslint_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
- name: Install dependencies
working-directory: frontend
run: npm ci
run: |
# Generate a fresh package-lock.json and install dependencies
npm install --package-lock-only
npm install
- name: Run ESLint
working-directory: frontend
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ jobs:
- name: Install Node.js dependencies
working-directory: frontend
run: npm ci
run: |
# Generate a fresh package-lock.json and install dependencies
npm install --package-lock-only
npm install
- name: Build for ${{ matrix.os }}
run: poetry run python scripts/build.py --os ${{ matrix.build_os }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/vitest_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
- name: Install dependencies
working-directory: frontend
run: npm ci
run: |
# Generate a fresh package-lock.json and install dependencies
npm install --package-lock-only
npm install
- name: Run tests
working-directory: frontend
Expand Down

0 comments on commit 299fee4

Please sign in to comment.