Skip to content

Commit

Permalink
Add github workflow to check package-lock.json
Browse files Browse the repository at this point in the history
  • Loading branch information
c-bata committed Apr 24, 2024
1 parent ffce90a commit ac8ef06
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/typescript-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,33 @@ jobs:
npm install
npm run type-check
check-package-lock-json:
name: Check package-lock.json
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@master

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '20'

- working-directory: optuna_dashboard
run: npm install
- working-directory: tslib/types
run: npm install
- working-directory: tslib/storage
run: npm install
- working-directory: tslib/react
run: npm install
- working-directory: standalone_app
run: npm install
- working-directory: vscode
run: npm install
- run: git diff --exit-code

build:
name: JS build check
runs-on: ubuntu-latest
Expand Down

0 comments on commit ac8ef06

Please sign in to comment.