Skip to content

Commit

Permalink
chore(ci): use new node lts (#5469)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed Oct 28, 2021
1 parent caa700f commit 0a0c6a1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Expand Up @@ -23,9 +23,9 @@ jobs:
node_version: [12, 14, 16]
include:
- os: macos-latest
node_version: 14
node_version: 16
- os: windows-latest
node_version: 14
node_version: 16
fail-fast: false

name: "Build&Test: node-${{ matrix.node_version }}, ${{ matrix.os }}"
Expand All @@ -34,9 +34,9 @@ jobs:
uses: actions/checkout@v2

- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
uses: pnpm/action-setup@v2
with:
version: 6.15.1
version: 6

- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v2
Expand Down Expand Up @@ -64,21 +64,21 @@ jobs:

lint:
runs-on: ubuntu-latest
name: "Lint: node-14, ubuntu-latest"
name: "Lint: node-16, ubuntu-latest"
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
uses: pnpm/action-setup@v2
with:
version: 6.15.1
version: 6

- name: Set node version to 14
- name: Set node version to 16
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16
cache: "pnpm"

- name: Install deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-close-require.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: need reproduction
uses: actions-cool/issues-helper@v2.4.3
uses: actions-cool/issues-helper@v2
with:
actions: "close-issues"
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/issue-labeled.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- name: contribution welcome
if: github.event.label.name == 'contribution welcome' || github.event.label.name == 'help wanted'
uses: actions-cool/issues-helper@v2.4.3
uses: actions-cool/issues-helper@v2
with:
actions: "create-comment, remove-labels"
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -21,7 +21,7 @@ jobs:

- name: remove pending
if: github.event.label.name == 'enhancement' || github.event.label.name == 'bug' || (contains(github.event.label.name, 'pending triage') == false && startsWith(github.event.label.name, 'bug:') == true)
uses: actions-cool/issues-helper@v2.4.3
uses: actions-cool/issues-helper@v2
with:
actions: "remove-labels"
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -30,7 +30,7 @@ jobs:

- name: need reproduction
if: github.event.label.name == 'need reproduction'
uses: actions-cool/issues-helper@v2.4.3
uses: actions-cool/issues-helper@v2
with:
actions: "create-comment, remove-labels"
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 0a0c6a1

Please sign in to comment.