Skip to content

Merge pull request #1 from firefoxic/master #3

Merge pull request #1 from firefoxic/master

Merge pull request #1 from firefoxic/master #3

Workflow file for this run

name: Deploy to GitHub-Pages
on:
push:
branches:
- master
jobs:
deploy:
name: Deploy
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Restore cache
uses: actions/cache@v3
with:
path: ~/.npm
key: cache-npm-${{ hashFiles('./package-lock.json') }}
restore-keys: cache-npm-
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ./build
branch: gh-pages