Skip to content

feat: Implement notifications handling #5

feat: Implement notifications handling

feat: Implement notifications handling #5

Workflow file for this run

name: Build and Deploy on PR to Dev
on:
pull_request:
branches:
- dev
jobs:
build-and-deploy-on-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Dependencies
run: yarn
- name: Build Project
run: yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist