diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 940bb55..6df1311 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,6 @@ permissions: contents: write jobs: - build: name: Test runs-on: ubuntu-20.04 @@ -25,9 +24,13 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - - run: npm ci - - run: npm run build - - run: npm test + - name: Install Dependencies + run: | + npm install + - name: Build and Test + run: | + npm run build + npm test - name: Publish to release uses: softprops/action-gh-release@v1 with: