From bc68750401b8c638c6ab21f34ab5ef83ae228ef7 Mon Sep 17 00:00:00 2001 From: jaywcjlove <398188662@qq.com> Date: Fri, 21 Oct 2022 02:31:10 +0800 Subject: [PATCH] chore: update workflows config. --- .github/workflows/pr.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 34abcf66..377febdf 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -4,16 +4,16 @@ on: jobs: build-deploy: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: 14 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 - - run: npm install - - run: npm run build - - run: npm run coverage - - run: npm run doc - - run: npm run bundle - - run: npm run bundle:min \ No newline at end of file + - run: npm install + - run: npm run build + - run: npm run coverage + - run: npm run doc + - run: npm run bundle + - run: npm run bundle:min \ No newline at end of file