Skip to content

Commit

Permalink
I hate CI dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Aschen authored and sebtiz13 committed Jul 24, 2023
1 parent d26ba75 commit b83b661
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install
run: npm ci
run: npm install
- name: Test
run: npm test
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci
- run: npm install
- run: npm test
- run: npm whoami; npm --ignore-scripts publish
env:
Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@
"eslint-plugin-eslint-plugin": "^5.0.6",
"mocha": "^10.0.0"
},
"engines": {
"node": "14.x || >= 16"
},
"license": "ISC",
"license": "Apache 2",
"files": [
"lib/",
"README.md",
Expand Down

0 comments on commit b83b661

Please sign in to comment.