From: Evan You Date: Mon, 20 Sep 2021 16:26:16 +0000 (-0400) Subject: ci: update ci script X-Git-Tag: v3.2.13~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b39dc52fc8f007abb77fa2af0744b25b7310aa22;p=thirdparty%2Fvuejs%2Fcore.git ci: update ci script --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84ce7fc08d..765a1a4c5b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,24 +10,26 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Set node version to 16 uses: actions/setup-node@v2 with: - node-version: 16.8 - - uses: bahmutov/npm-install@v1 + node-version: 16 + cache: 'yarn' + - run: yarn install - name: Run unit tests run: yarn test --ci test-dts: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Set node version to 16 uses: actions/setup-node@v2 with: node-version: 16 - - uses: bahmutov/npm-install@v1 + cache: 'yarn' + - run: yarn install - name: Run type declaration tests run: yarn test-dts @@ -36,15 +38,15 @@ jobs: env: CI_JOB_NUMBER: 1 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Set node version to 16 uses: actions/setup-node@v2 with: node-version: 16 - - uses: bahmutov/npm-install@v1 - + cache: 'yarn' + - run: yarn install - name: Check build size - uses: posva/size-check-action@v1.1.2 + uses: posva/size-check-action@v2.1.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} build_script: size