diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 8f9b54da..a5ed15a4 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -7,5 +7,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + cache: "npm" + + - run: npm install - name: Build and Test run: npm run build && npm run test