Skip to content

Commit

Permalink
Merge branch 'main' into rimraf_updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoco committed Mar 26, 2024
2 parents b8b4efe + efbe3a8 commit db83680
Show file tree
Hide file tree
Showing 10 changed files with 263 additions and 296 deletions.
14 changes: 7 additions & 7 deletions .eslintrc.json
@@ -1,11 +1,11 @@
{
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"plugin:n/recommended",
"prettier"
],
"plugins": [
"node",
"n",
"prettier"
],
"rules": {
Expand Down Expand Up @@ -48,11 +48,11 @@
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/camelcase": "off",
"node/no-missing-import": "off",
"node/no-empty-function": "off",
"node/no-unsupported-features/es-syntax": "off",
"node/no-missing-require": "off",
"node/shebang": "off",
"n/no-missing-import": "off",
"n/no-empty-function": "off",
"n/no-unsupported-features/es-syntax": "off",
"n/no-missing-require": "off",
"n/shebang": "off",
"no-dupe-class-members": "off",
"require-atomic-updates": "off"
},
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
@@ -1,6 +1,6 @@
on:
push:
branches: [ $default-branch ]
branches: [$default-branch]
pull_request:
name: ci
jobs:
Expand All @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [14, 16, 18]
node: [14, 16, 18, 20, 21]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@v4
Expand All @@ -29,7 +29,7 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
- run: npm ci
- run: npm run system-test
system_test:
Expand All @@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
- run: npm ci
- run: npm run system-test
lint:
Expand All @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
- run: npm ci
- run: npm run lint
license_check:
Expand All @@ -56,6 +56,6 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
- run: npm ci
- run: npm run license-check
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
registry-url: 'https://wombat-dressing-room.appspot.com'
- run: npm ci
- run: npm publish
Expand Down

0 comments on commit db83680

Please sign in to comment.