Skip to content

test

test #2

Workflow file for this run

name: Validate PR
on:
pull_request:
# Test
push:
branches: ['mmi-3203-github-migration']
jobs:
build:
runs-on: ubuntu-latest
container:
image: node:14-alpine
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
rm -rf public
mkdir public
yarn
yarn build
cp -r dist/* public
cp dist/index.html dist/404.html