Skip to content

Commit

Permalink
Update Github action to build npm package (#14)
Browse files Browse the repository at this point in the history
* Update Github action to build npm package

* Fix current working directory

* Fix active directory issue
  • Loading branch information
chiro-hiro authored Jun 9, 2023
1 parent 3c05df4 commit c8a944c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: ./zkdb/package-lock.json
- name: Install Dependencies
run: npm ci
run: npm --prefix zkdb ci
- name: Eslint check
run: npm run lint-check
run: npm --prefix zkdb run lint-check
- name: Build Project
run: npm run build
run: npm --prefix zkdb run build

0 comments on commit c8a944c

Please sign in to comment.