Skip to content

update copy

update copy #262

Workflow file for this run

on:
push:
branches:
- "main"
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v2.3.1
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install, Lint, test, and Build πŸ”§
run: |
yarn install
yarn prettier . -c
yarn test --passWithNoTests
CI=false yarn build
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.