Skip to content

Commit

Permalink
Update dependencies to latest
Browse files Browse the repository at this point in the history
- Update all `npm` dependencies
- Update all GitHub actions
- Update Node to v22
  • Loading branch information
undergroundwires committed Dec 28, 2024
1 parent 2128a40 commit 8f2f12c
Show file tree
Hide file tree
Showing 6 changed files with 8,578 additions and 6,498 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14.x
node-version: 22.x
- run: npm ci
- run: npm test
- run: npm run compile
12 changes: 6 additions & 6 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
distribute:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: master # otherwise it defaults to the version tag missing bump commit
fetch-depth: 0 # fetch all history
- uses: actions/setup-node@v1
- uses: actions/setup-node@v4
with:
node-version: 14.x
node-version: 22.x
- name: Install dependencies
run: npm ci
- name: Run tests
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
needs: distribute
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: master # otherwise it defaults to the version tag missing bump commit
fetch-depth: 0 # fetch all history
Expand All @@ -70,9 +70,9 @@ jobs:
needs: create-package
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
- uses: actions/setup-node@v4
with:
node-version: 14.x
node-version: 22.x
registry-url: https://registry.npmjs.org/
- uses: actions/download-artifact@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/quality-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
- npm run lint-md-consistency
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '14.x'
node-version: '22.x'
- name: Install dependencies
run: npm ci
- name: Ensure consistency
Expand Down
2 changes: 1 addition & 1 deletion compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const fs = require('fs');
const babel = require('@babel/core');
const path = require('path');
const ClosureCompiler = require('google-closure-compiler').jsCompiler;
const ClosureCompiler = require('google-closure-compiler').compiler;
const CleanCSS = require('clean-css');

const outputFolder = 'dist';
Expand Down
Loading

0 comments on commit 8f2f12c

Please sign in to comment.