Skip to content

Add references to IMC Prosperity 2 visualizer #45

Add references to IMC Prosperity 2 visualizer

Add references to IMC Prosperity 2 visualizer #45

Workflow file for this run

name: Build
on: [push, pull_request]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build && cp 404.html dist/404.html
- name: Deploy
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist
git-config-name: GitHub Actions
git-config-email: [email protected]