Skip to content

Commit

Permalink
Updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jjxxs committed Feb 16, 2025
1 parent acc96da commit 8fbf0ad
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3.8.1
- uses: actions/setup-node@v4.2.0
with:
node-version: '18.15.0'
node-version: '22.14.0'
- name: Install dev-dependencies
run: npm install --only=dev
- name: Run build
run: npm run build
run: npm run build
6 changes: 3 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3.8.1
- uses: actions/setup-node@v4.2.0
with:
node-version: '18.15.0'
node-version: '22.14.0'
- name: Install dev-dependencies
run: npm install --only=dev
- name: Run test with coverage
run: npm run test:coverage
- name: Generate coveralls report
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: npm run coveralls
run: npm run coveralls
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3.8.1
- uses: actions/setup-node@v4.2.0
with:
node-version: '18.15.0'
node-version: '22.14.0'
- name: Install dev-dependencies
run: npm install --only=dev
- name: Run lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3.8.1
- uses: actions/setup-node@v4.2.0
with:
node-version: '18.15.0'
node-version: '22.14.0'
registry-url: 'https://registry.npmjs.org'

# Install, build & publish to npm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3.8.1
- uses: actions/setup-node@v4.2.0
with:
node-version: '18.15.0'
node-version: '22.14.0'
- name: Install dev-dependencies
run: npm install --only=dev
- name: Run test
run: npm run test
run: npm run test

0 comments on commit 8fbf0ad

Please sign in to comment.