diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 2484380..63ac163 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -75,3 +75,21 @@ jobs: key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} # end reused configuration - run: npm run prettier-check + + build: + name: Builds + # Start reused configuration + runs-on: ubuntu-latest + needs: [cache-packages] + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + - uses: actions/cache@v3 + id: load-cache + with: + path: node_modules + key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} + # end reused configuration + - run: npm run build