Skip to content

Bump nanoid from 3.3.7 to 3.3.8 (#42) #15

Bump nanoid from 3.3.7 to 3.3.8 (#42)

Bump nanoid from 3.3.7 to 3.3.8 (#42) #15

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code 🛎️
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Run npm ci and build
run: |
npm ci
npm run build
- name: Deploy to gh-pages 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.
clean: true
single-commit: true