Skip to content

Commit

Permalink
feat: change building system to rollup, compiling linter into a binary
Browse files Browse the repository at this point in the history
  • Loading branch information
zavoloklom committed Nov 12, 2024
1 parent 25048eb commit b562b11
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
- name: Build the project
run: npm run build

- name: List files
run: ls -R ./bin

- name: Build the SEA
run: ./scripts/generate-sea.sh ./pkg/dclint

Expand Down Expand Up @@ -66,13 +69,16 @@ jobs:
uses: actions/download-artifact@v4
with:
name: build-artifacts
path: ./bin
path: ./dist, ./bin, ./pkg

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: List files
run: ls -R ./bin

- name: Install dependencies
run: npm ci --omit=dev

Expand Down

0 comments on commit b562b11

Please sign in to comment.