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