Skip to content

Format.

Format. #26

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: Build
run: |
npm ci
npm run build
npm run export
cp robots.txt out/robots.txt
cp CNAME out/CNAME
touch out/.nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: out