Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/build-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ runs:
uses: actions/cache@v4
with:
path: dist
# I only want to cache the dist folder for this workflow run
key: dist-${{ inputs.node-version }}-${{ github.run_id }}
key: dist-${{ inputs.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
dist-${{ inputs.node-version }}-

# Set up GitHub Actions caching for Wireit.
# - uses: google/wireit@setup-github-actions-caching/v2
Expand Down
2 changes: 1 addition & 1 deletion .github/module-cache/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
- name: Setup node
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node }}
node-version: ${{ inputs.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: |
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

permissions:
contents: read
pages: write

jobs:
build:
Expand All @@ -14,26 +22,43 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node, install dependencies, and cache node modules, build dist artifacts
uses: ./.github/build-artifacts
with:
node-version: ${{ matrix.node }}
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist

deploy:
needs: build
runs-on: ubuntu-latest
concurrency:
group: deploy-pages-${{ github.ref }}
cancel-in-progress: true
strategy:
matrix:
# for future expansion, for now only node 16 is supported
node: [24.x]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

# Set up GitHub Actions caching for Wireit.
# - uses: google/wireit@setup-github-actions-caching/v2


- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Get the build
uses: ./.github/build-artifacts
with:
Expand Down
51 changes: 26 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,19 +227,19 @@
}
},
"dependencies": {
"@angular/animations": "21.1.0",
"@angular/aria": "21.1.0",
"@angular/cdk": "21.1.0",
"@angular/common": "21.1.0",
"@angular/compiler": "21.1.0",
"@angular/core": "21.1.0",
"@angular/elements": "21.1.0",
"@angular/forms": "21.1.0",
"@angular/platform-browser": "21.1.0",
"@angular/platform-browser-dynamic": "21.1.0",
"@angular/platform-server": "21.1.0",
"@angular/router": "21.1.0",
"@angular/ssr": "21.1.0",
"@angular/animations": "21.1.1",
"@angular/aria": "21.1.1",
"@angular/cdk": "21.1.1",
"@angular/common": "21.1.1",
"@angular/compiler": "21.1.1",
"@angular/core": "21.1.1",
"@angular/elements": "21.1.1",
"@angular/forms": "21.1.1",
"@angular/platform-browser": "21.1.1",
"@angular/platform-browser-dynamic": "21.1.1",
"@angular/platform-server": "21.1.1",
"@angular/router": "21.1.1",
"@angular/ssr": "21.1.1",
"@faker-js/faker": "10.2.0",
"@fortawesome/fontawesome-free": "7.1.0",
"@fortawesome/fontawesome-svg-core": "7.1.0",
Expand All @@ -251,10 +251,11 @@
"bson": "7.1.1",
"chance": "1.1.13",
"colorjs.io": "0.6.1",
"core-js": "3.47.0",
"core-js": "3.48.0",
"express": "5.2.1",
"front-matter": "4.0.2",
"highlight.js": "11.11.1",
"hono": "^4.11.5",
"idb-keyval": "6.2.2",
"jsdom": "27.4.0",
"marked": "17.0.1",
Expand All @@ -270,44 +271,44 @@
"rxjs": "7.8.2",
"sse.js": "^2.7.2",
"tslib": "2.8.1",
"vitest": "4.0.17",
"vitest": "4.0.18",
"yaml": "2.8.2"
},
"overrides": {
"asciidoctor.js": {}
},
"devDependencies": {
"@angular-devkit/build-angular": "21.1.0",
"@angular-devkit/build-angular": "21.1.1",
"@angular-eslint/builder": "21.1.0",
"@angular-eslint/eslint-plugin": "^21.1.0",
"@angular-eslint/template-parser": "21.1.0",
"@angular/build": "21.1.0",
"@angular/cli": "21.1.0",
"@angular/compiler-cli": "21.1.0",
"@angular/language-service": "21.1.0",
"@angular/build": "21.1.1",
"@angular/cli": "21.1.1",
"@angular/compiler-cli": "21.1.1",
"@angular/language-service": "21.1.1",
"@eslint/js": "^9.39.2",
"@playwright/test": "1.57.0",
"@npmcli/package-json": "7.0.4",
"@playwright/test": "1.58.0",
"@types/chance": "1.1.7",
"@types/eslint": "9.6.1",
"@types/express": "5.0.6",
"@types/js-yaml": "4.0.9",
"json5": "2.2.3",
"@types/jsdom": "27.0.0",
"@types/msgpack-lite": "0.1.12",
"@types/node": "24.10.1",
"@types/wicg-file-system-access": "2023.10.7",
"@typescript-eslint/eslint-plugin": "8.53.1",
"@typescript-eslint/parser": "8.53.1",
"@vitest/coverage-v8": "4.0.17",
"@npmcli/package-json": "7.0.4",
"@vitest/coverage-v8": "4.0.18",
"@web/test-runner": "0.20.2",
"angular-eslint": "21.1.0",
"eslint": "^9.39.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.3.0",
"json5": "2.2.3",
"micromark-util-types": "^2.0.2",
"ng-packagr": "21.1.0",
"prettier": "3.8.0",
"prettier": "3.8.1",
"sharp": "0.34.5",
"ts-node": "10.9.2",
"tsc-watch": "7.2.0",
Expand Down
Loading
Loading