From: Evan You Date: Thu, 29 Jul 2021 16:35:35 +0000 (-0400) Subject: ci: set node to 16 X-Git-Tag: v3.2.0-beta.7~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e019b14addbbf5874ac3cc4a7c36c299bdbcc1af;p=thirdparty%2Fvuejs%2Fcore.git ci: set node to 16 --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47dc9916c6..3469a0a9c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - name: Set node version to 16 + uses: actions/setup-node@v2 + with: + node-version: 16 - uses: bahmutov/npm-install@v1 - name: Run unit tests run: yarn test --ci @@ -19,6 +23,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 + - name: Set node version to 16 + uses: actions/setup-node@v2 + with: + node-version: 16 - uses: bahmutov/npm-install@v1 - name: Run type declaration tests run: yarn test-dts @@ -29,6 +37,10 @@ jobs: CI_JOB_NUMBER: 1 steps: - uses: actions/checkout@v1 + - name: Set node version to 16 + uses: actions/setup-node@v2 + with: + node-version: 16 - uses: bahmutov/npm-install@v1 - name: Check build size