Skip to content

Implement simple flash card #18

Implement simple flash card

Implement simple flash card #18

Workflow file for this run

---
name: CI/CD
"on":
pull_request:
push:
branches:
- master
env:
USER: QubitPi
EMAIL: jack20220723@gmail.com
NODE_VERSION: 18
jobs:
ci-cd:
name: CI/CD
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set node version to ${{ env.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.node_version }}
- name: Install dependencies
run: npm install -g yarn@1.22.19 && yarn
- name: Production build
run: yarn build
- name: Deploy to GitHub Pages
# if: github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build
enable_jekyll: false
user_name: ${{ env.USER }}
user_email: ${{ env.EMAIL }}