Skip to content

Commit

Permalink
ci: update actions/setup-node
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsalles committed Jan 24, 2021
1 parent d99492b commit 10cf0fe
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: '12'
- name: Install modules
run: npm install
- name: Check code style
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ jobs:
# "ref" specifies the branch to check out.
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted
ref: ${{ github.event.release.target_commitish }}
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: '12'
registry-url: https://registry.npmjs.org/
scope: "@mx-js"
- run: npm install
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: '12'
- name: Install modules
run: npm install
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## Prerequisites

You will need [Node.js](https://nodejs.org/) **version 8+**.
You will need [Node.js](https://nodejs.org/) **version 12+**.

## Instalation

Expand Down

0 comments on commit 10cf0fe

Please sign in to comment.