Skip to content

Update to 2024Q1

Update to 2024Q1 #53

Workflow file for this run

name: CI
on:
push:
branches:
- publish
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
run: npm i
- name: Build project
run: npm run build
- name: Deploy to GitHub Pages
if: github.event_name == 'push'
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BASE_BRANCH: publish
BRANCH: gh-pages
FOLDER: build