Skip to content

Commit

Permalink
fix(actions): added node 14 to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Stradivario committed Apr 23, 2024
1 parent c0d4fb1 commit c59ce9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
${{ runner.os }}-
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 14
- name: Install Dependencies
run: npm install

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- run: npm install
- run: npm run lint --if-present
- run: npm test
- run: npm test

0 comments on commit c59ce9b

Please sign in to comment.