Skip to content

Commit

Permalink
Host demo app on GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
esme committed Feb 13, 2023
1 parent 911b568 commit 2e7a7bd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Deploy to GitHub pages
on:
push:
branches: [ project-demo-v1 ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: demo-v1
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: yarn install && yarn build
- name: Start app
run: yarn start

0 comments on commit 2e7a7bd

Please sign in to comment.