diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e48afb9..694a745 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,10 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js 12.x + - name: Use Node.js 16.x uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 16.x - run: npm ci - run: npm run build - run: npm run sitemap diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4a8e900..1fc8715 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js 12.x + - name: Use Node.js 16.x uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 16.x - run: npm ci - run: npm run lint - run: npm run build