Skip to content

Commit

Permalink
update TLD files, pin major dep versions (#63)
Browse files Browse the repository at this point in the history
* update ci configs
  • Loading branch information
msimerson authored May 23, 2022
1 parent e0e048a commit 55afd63
Show file tree
Hide file tree
Showing 9 changed files with 259 additions and 97 deletions.
2 changes: 1 addition & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ engines:
- javascript
eslint:
enabled: true
channel: "eslint-6"
channel: "eslint-8"
config:
config: ".eslintrc.yaml"
fixme:
Expand Down
23 changes: 10 additions & 13 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Module Tests
name: Tests

on: [ push, pull_request ]
on: [ push ]

env:
CI: true

jobs:

Expand All @@ -11,25 +14,19 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: [ 12.x, 14.x, 16.x ]
node-version: [ 14, 16, 18 ]
fail-fast: false

steps:
- uses: actions/checkout@v2
name: Checkout Module
with:
fetch-depth: 1

- uses: actions/setup-node@v1
name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
with:
node-version: ${{ matrix.node-version }}

- name: npm install
run: npm install

- name: Run test suite
run: npm run test
- run: npm install

env:
CI: true
- run: npm test
9 changes: 3 additions & 6 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,17 @@ name: Test Coverage
jobs:

coverage:
name: Codecov
runs-on: ubuntu-latest

steps:

- uses: actions/checkout@master
name: Checkout Module
- uses: actions/checkout@v2
with:
fetch-depth: 1

- name: Use Node.js 14
uses: actions/setup-node@master
- uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 16

- name: install, run
run: |
Expand Down
27 changes: 11 additions & 16 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,28 @@
name: Lint

on: [ push, pull_request ]
on: [ push ]

env:
CI: true
node-version: 16

jobs:

lint:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [ 12.x ]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
name: Checkout Module
with:
fetch-depth: 1

- uses: actions/setup-node@v1
name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
name: Node ${{ env.node-version }}
with:
node-version: ${{ matrix.node-version }}

- name: npm install
run: npm install
node-version: ${{ env.node-version }}

- name: Lint using eslint
run: npm run lint
- run: npm install

env:
CI: true
- run: npm run lint
9 changes: 4 additions & 5 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ on:
- master

env:
node_version: 14
CI: true
node_version: 16

jobs:

Expand All @@ -26,11 +27,9 @@ jobs:
node-version: ${{ env.node_version }}
registry-url: https://registry.npmjs.org/

- name: npm install
run: npm install
- run: npm install

- name: Run test suite
run: npm run test
- run: npm run test

- name: publish to NPM
run: npm publish --access public
Expand Down
6 changes: 6 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
##### 1.N.N


#### 1.0.30 - 2022-05-23

- update TLD files
- dep(\*): pin major versions


#### 1.0.29 - 2021-10-10

- update TLD files
Expand Down
Loading

0 comments on commit 55afd63

Please sign in to comment.