Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hildjj committed Dec 27, 2023
1 parent e5df72e commit 7015aa3
Show file tree
Hide file tree
Showing 9 changed files with 1,862 additions and 1,154 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,25 @@ jobs:

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

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

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- 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
- name: Install dependencies
run: npm install
- name: Check coding standards
if: matrix.node-version == '20.x' && matrix.os == 'ubuntu-latest'
if: matrix.node-version == '21.x' && matrix.os == 'ubuntu-latest'
run: npm run lint
- name: Static analysis - check types
if: matrix.node-version == '20.x' && matrix.os == 'ubuntu-latest'
if: matrix.node-version == '21.x' && matrix.os == 'ubuntu-latest'
run: npm run ts
- name: Test
run: npm run test
1 change: 1 addition & 0 deletions docs/.eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("js");
eleventyConfig.addPassthroughCopy("vendor");
eleventyConfig.addPassthroughCopy("favicon.ico");
eleventyConfig.addPassthroughCopy("development/favicon.ico");
eleventyConfig.addPassthroughCopy("CNAME");

eleventyConfig.setServerOptions({
Expand Down
Binary file added docs/development/favicon.ico
Binary file not shown.
Loading

0 comments on commit 7015aa3

Please sign in to comment.