Skip to content

updating package

updating package #13

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
submodules: true
- name: Install 🔧
run: |
npm install
- name: Test
run: |
npm test
- name: Build
if: ${{ success() }}
run: |
npm run build
- name: Deploy 🚀
if: ${{ success() }}
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.
- run: echo "Deployment status ${{ env.deployment_status }}"