Skip to content

Commit

Permalink
need to npm ci before npm run tsc will work.
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Nov 23, 2024
1 parent b7e0f6c commit a39b55a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,20 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18.x"
node-version: 18

- name: Install dependencies
run: npm ci

- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: ./prebuilds
merge-multiple: true # < because prebuilds/linux-x64/ will contain both a glibc and musl build

- name: List ./prebuilds/
run: ls -la ./prebuilds

- name: Configure git for publishing
run: |
git config user.name "${GITHUB_ACTOR}"
Expand Down

0 comments on commit a39b55a

Please sign in to comment.