Skip to content

Commit

Permalink
Merge pull request #8 from cto-af/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
hildjj authored Mar 7, 2024
2 parents 421a83f + a2fa76a commit 355d463
Show file tree
Hide file tree
Showing 6 changed files with 1,606 additions and 2,222 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,31 @@ name: Tests
on:
push:
branches:
- 'main'
- main
pull_request:
branches: ['*']
branches:
- main

jobs:
build:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x, 21.x]
node-version: [18.x, 20.x, 21.x]
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache: pnpm
- name: Install dependencies
run: npm install
run: pnpm install
- name: Check coding standards
if: matrix.node-version == '20.x' && matrix.os == 'ubuntu-latest'
run: npm run lint
Expand Down
3 changes: 3 additions & 0 deletions .ncurc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"dep": ["prod", "dev", "packageManager"]
}
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
coverage/
test/
.github/
.ncurc
Loading

0 comments on commit 355d463

Please sign in to comment.