Skip to content

Commit

Permalink
change to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
lednhatkhanh committed Sep 22, 2024
1 parent 184e00a commit dd9d13b
Show file tree
Hide file tree
Showing 6 changed files with 8,236 additions and 5,291 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- uses: actions/setup-node@v4
with:
node-version: 18.x
cache: "pnpm"
cache: "npm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
run: npm install --frozen-lockfile
- name: Run build
run: pnpm run build
run: npm run build
- name: Run test
run: pnpm run test
run: npm run test
env:
BLOCKFROST_PROJECT_ID_MAINNET: ${{ secrets.BLOCKFROST_PROJECT_ID_MAINNET }}
BLOCKFROST_PROJECT_ID_TESTNET: ${{ secrets.BLOCKFROST_PROJECT_ID_TESTNET }}
- name: Check format & lint
run: pnpm run check-format
run: npm run check-format
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hoist=false
Loading

0 comments on commit dd9d13b

Please sign in to comment.