Skip to content

Commit

Permalink
Upgraded Node and setup-node action for ESLint Format Checker
Browse files Browse the repository at this point in the history
This commit updates the ESLint Format Checker action to use actions/setup-node@v2.1.4 and nodejs/node@v14.x.
  • Loading branch information
ZelnickB committed Dec 20, 2020
1 parent 7c2802b commit 6e597b0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# This is a basic workflow to help you get started with Actions

name: ESLint Format Checker

# Controls when the action will run. Triggers the workflow on push or pull request
Expand All @@ -23,12 +21,12 @@ jobs:
- uses: actions/checkout@v2

- name: Setup Node.js environment
uses: actions/setup-node@v2.1.1
uses: actions/setup-node@v2.1.4
with:
# Set always-auth in npmrc
always-auth: true # optional, default is false
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0
node-version: 12.x # optional
node-version: 14.x # optional
check-latest: true

- name: Install dependencies
Expand Down

0 comments on commit 6e597b0

Please sign in to comment.