diff --git a/.github/workflows/push-workflows.yml b/.github/workflows/push-workflows.yml index add30d2..31d0938 100644 --- a/.github/workflows/push-workflows.yml +++ b/.github/workflows/push-workflows.yml @@ -22,6 +22,16 @@ jobs: node-version: ["20.x"] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + registry-url: https://registry.npmjs.org/ + cache: 'npm' + - name: Install dependencies + run: npm ci - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}