diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index b41cba0..aa23ff8 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -22,10 +22,11 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup Node 16.x + - name: Setup Node 14.x uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 14.x + cache: 'npm' - name: Install dependencies run: npm install diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 89b47c8..023864b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,10 +25,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Setup Node 16.x + - name: Setup Node 14.x uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 14.x + cache: 'npm' - name: Install dependencies run: npm ci