From 3aefa62315ffff454374cb66314414e41275aff8 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Tue, 3 Nov 2020 00:06:56 +0800 Subject: [PATCH] chore: node 14 --- .github/workflows/format.yml | 2 +- .github/workflows/npm-publish.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 25d7ee7bd..472953b0e 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '12' + node-version: '14' - run: yarn install - run: npm run format - name: Commit files diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 6fbc11a90..196d5e824 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '12' + node-version: '14' registry-url: 'https://registry.npmjs.org' - name: Release run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a1847ad76..5c26423ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x] + node-version: [10.x, 12.x, 14.x] steps: - uses: actions/checkout@v2