feat: fix lint errors #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
deployments: write | |
name: Publish to Cloudflare Pages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4.0.3 | |
- name: Enable corepack | |
run: | | |
corepack enable | |
yarn set version stable | |
- name: prepare | |
run: | | |
chmod +x ./prepare.sh | |
./prepare.sh | |
shell: bash | |
- name: install dependencies | |
run: | | |
yarn | |
- name: build xterm-pty | |
run: yarn xterm-pty:build | |
- name: binary install | |
run: yarn binary:install | |
- name: build containers | |
run: yarn wasm:build | |
- name: build app | |
run: yarn app:build |