Skip to content

new: Add support for a .app URL (#264) #234

new: Add support for a .app URL (#264)

new: Add support for a .app URL (#264) #234

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 16]
fail-fast: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: yarn
node-version: ${{ matrix.node-version }}
- run: yarn install --immutable
- run: yarn run build
- run: yarn run type
- run: yarn run test
- run: yarn run lint
pack:
name: Pack
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: yarn
- run: yarn install --immutable
- run: yarn run type
- run: yarn run pack
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: yarn
- run: yarn install --immutable
- run: yarn run pack
- run: cd website && yarn run build