Skip to content

feat non mandatory validation on gateway #122

feat non mandatory validation on gateway

feat non mandatory validation on gateway #122

name: publish-to-github-pages
on:
push:
branches:
- master
pull_request:
branches:
- master
- develop
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "20"
- run: yarn install
- run: yarn test
publish-to-gh-pages:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "20"
- run: yarn install
- run: yarn build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist