Skip to content

feat: use @pomsky-lang/parser #66

feat: use @pomsky-lang/parser

feat: use @pomsky-lang/parser #66

Workflow file for this run

name: GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-20.04
env:
NODE_OPTIONS: --max-old-space-size=4096
steps:
- name: Checkout
uses: actions/checkout@v3
- name: 🚚 Setup node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: yarn
- name: 🚚 Install dependencies
run: yarn
- name: 📦 Build production website
run: yarn run build -v
- name: 🚀 Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.PUBLISH_TOKEN }}
publish_dir: ./dist