Skip to content

feat: plane

feat: plane #615

Workflow file for this run

name: Github CI
on:
push:
branches-ignore:
- 'gh-pages'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: git fetch --unshallow || true
- run: yarn install --frozen-lockfile
- run: npm run build
- run: npm run lint
- run: npm run test
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
commit_message: ${{ github.event.head_commit.message }}
publish_dir: .
keep_files: true
env:
CI: true