Skip to content

Commit

Permalink
fix(ci): test JS CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Nickersoft committed Jun 16, 2024
1 parent 34c1dee commit e8836c1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/napi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ jobs:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
- name: Install dependencies
run: |
pnpm config set supportedArchitectures.libc "musl"
pnpm install
pnpm install --no-frozen-lockfile
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
run: |
pnpm config set supportedArchitectures.cpu "arm64"
pnpm config set supportedArchitectures.libc "glibc"
pnpm install
pnpm install --no-frozen-lockfile
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
run: |
pnpm config set supportedArchitectures.cpu "arm64"
pnpm config set supportedArchitectures.libc "musl"
pnpm install
pnpm install --no-frozen-lockfile
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
Expand Down Expand Up @@ -394,7 +394,7 @@ jobs:
- name: Install dependencies
run: |
pnpm config set supportedArchitectures.cpu "arm"
pnpm install
pnpm install --no-frozen-lockfile
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
Expand Down Expand Up @@ -425,7 +425,7 @@ jobs:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile
- name: Download macOS x64 artifact
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -466,7 +466,7 @@ jobs:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install
run: pnpm install --no-frozen-lockfile
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit e8836c1

Please sign in to comment.