Skip to content

fix: custom domain

fix: custom domain #11

Workflow file for this run

name: frontend
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- run: yarn --ignore-scripts
shell: bash
- name: prettier
run: yarn prettier:check
- name: lint
run: yarn lint
- name: build
run: yarn build