Skip to content

Merge pull request #202 from github/dependabot/npm_and_yarn/npm_and_y… #231

Merge pull request #202 from github/dependabot/npm_and_yarn/npm_and_y…

Merge pull request #202 from github/dependabot/npm_and_yarn/npm_and_y… #231

Workflow file for this run

name: build-and-deploy
on:
push:
branches:
- main
permissions:
contents: write
pages: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧
uses: actions/setup-node@v2
with:
node-version: '>=18.17.0'
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm install
npm run test
npm run build
- name: Add .nojekyll file
run: touch ./out/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@62fec3add6773ec5dbbf18d2ee4260911aa35cf4 # v4.6.9
with:
branch: gh-pages # The branch the action should deploy to.
folder: out # The folder the action should deploy.