Skip to content

Merge pull request #98 from filefi/renovate/node-24.x #227

Merge pull request #98 from filefi/renovate/node-24.x

Merge pull request #98 from filefi/renovate/node-24.x #227

Workflow file for this run

name: Pages
on:
push:
branches:
- master # default branch
jobs:
pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Use Node.js 20.x
uses: actions/setup-node@v6
with:
node-version: '24'
- name: Cache NPM dependencies
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.OS }}-npm-cache
restore-keys: |
${{ runner.OS }}-npm-cache
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public