Skip to content

Add an option to start subsequent timers automatically #65

Add an option to start subsequent timers automatically

Add an option to start subsequent timers automatically #65

Workflow file for this run

name: Deploy to GitHub Pages
# Trigger the workflow on push to the main branch
on:
push:
branches:
- main
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Set up Node.js
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
# Install dependencies
- name: Install dependencies
run: npm ci
# Build the project
- name: Build project
run: npm run build
# Deploy to GitHub Pages
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist