Skip to content

Bump marked from 15.0.3 to 15.0.4 in the dev-dependencies group #311

Bump marked from 15.0.3 to 15.0.4 in the dev-dependencies group

Bump marked from 15.0.3 to 15.0.4 in the dev-dependencies group #311

Workflow file for this run

name: deploy
on:
push:
branches:
- master
schedule:
# Weekly on a Friday at midnight
- cron: "0 0 * * 5"
jobs:
gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .nvmrc
id: nvmrc
shell: bash
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- uses: actions/setup-node@v4
with:
node-version: ${{ steps.nvmrc.outputs.NODE_VERSION }}
- run: npm ci
- run: npm run build
env:
CI: true
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.7.2
with:
branch: gh-pages
folder: dist