Skip to content

Update Tomigaoka timetable #86

Update Tomigaoka timetable

Update Tomigaoka timetable #86

Workflow file for this run

name: Node CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '12'
cache: 'npm'
- name: npm ci
run: npm ci
- name: npm build
run: |
npm run build:json
npm run build
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true