feat: add github workflow

This commit is contained in:
lawvs 2023-05-01 04:42:41 +08:00
parent 929caf73c2
commit 8e17bdc2b0

37
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,37 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Build and Deploy
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "yarn"
- run: yarn install --ignore-engines
- run: yarn build
- name: Upload pages artifacts
# https://github.com/actions/upload-pages-artifact
uses: actions/upload-pages-artifact@v1
with:
path: "public/"
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/master'
# https://github.com/actions/deploy-pages
uses: actions/deploy-pages@v2.0.0