diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 023864b..8f27d1f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,14 +25,14 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Setup Node 14.x + - name: Setup Node 16.x uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 16.x cache: 'npm' - name: Install dependencies - run: npm ci + run: npm install - name: Compile run: npm run build