From b562b11a4e1222f03d64d2f8b0e0b8c3ae9653d1 Mon Sep 17 00:00:00 2001 From: Sergey Kupletsky Date: Tue, 12 Nov 2024 15:53:25 +0100 Subject: [PATCH] feat: change building system to rollup, compiling linter into a binary --- .github/workflows/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1dcbfc5..3860a53 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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