Skip to content

Commit

Permalink
chore(ci): bump node lts
Browse files Browse the repository at this point in the history
remove old travis config
add dependabot config

close #98
  • Loading branch information
duncdrum committed Oct 7, 2022
1 parent 6279ab0 commit 96a0882
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 28 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: "14.x"
node-version: 16
cache: 'npm'
- name: npm install and build
run:
npm ci
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "14.x"
node-version: 'lts/*'
cache: 'npm'
- name: npm install and build
run:
npm ci
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
node_modules
.*
!.travis.yml
!.github/dependabot.yml
!.editorconfig
!.npmignore
!.gitignore
Expand Down
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

0 comments on commit 96a0882

Please sign in to comment.