diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40557bf9..4315ed31 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,14 @@ jobs: path: "**/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} - - name: Install dependencies, build, test, and lint the codebase - run: | - npm install - npm run build:lib - npm run test:types - npm run lint + - name: Install dependencies + run: npm install + + - name: Build the codebase + run: npm run build:lib + + - name: Test types + run: npm run test:types - name: Trigger deploy if: github.ref == 'refs/heads/master'