Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
derek-miller committed Mar 6, 2024
1 parent eac5b92 commit aea0756
Show file tree
Hide file tree
Showing 7 changed files with 792 additions and 739 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ extends:
- plugin:@typescript-eslint/eslint-recommended
- plugin:@typescript-eslint/recommended # uses the recommended rules from the @typescript-eslint/eslint-plugin
parserOptions:
ecmaVersion: latest
ecmaVersion: 2020
sourceType: module
ignorePatterns:
- dist
rules:
quotes:
- warn
- single
- avoidEscape: true
semi:
- "off"
comma-dangle:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
strategy:
matrix:
# the Node.js versions to build on
node-version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x, 20.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm publish
env:
Expand Down
Loading

0 comments on commit aea0756

Please sign in to comment.