Skip to content

Implement simple flash card #21

Implement simple flash card

Implement simple flash card #21

Workflow file for this run

# Copyright QubitPi
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
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 }}