Skip to content

Update Node.js

Update Node.js #2407

Workflow file for this run

name: Build Website
on:
push:
branches-ignore:
- master
- development
- 'renovate/**'
pull_request:
jobs:
build:
name: Build Website
runs-on: ubuntu-latest
env:
TZ: Asia/Tokyo
steps:
- uses: actions/checkout@v4
# run corepack before setup-node
# https://github.com/actions/setup-node/issues/899
- run: corepack enable yarn
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'yarn'
- name: yarn install
run: yarn install
- name: Generate website
run: yarn site:generate