diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index 7015825..549657d 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -17,8 +17,12 @@ jobs: node-version: [lts/fermium] steps: - - name: Checkout - uses: actions/checkout@v2 + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + cache: npm - name: Install Dependencies run: npm ci