Skip to content

Add Federation Compatibility Test Suite #565

Add Federation Compatibility Test Suite

Add Federation Compatibility Test Suite #565

Workflow file for this run

name: Check
# TODO: check whether runtime generated landing page html has changed
on:
push:
branches:
- main
pull_request:
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up env
uses: the-guild-org/shared-config/setup@v1
with:
node-version-file: .node-version
- name: Check
run: yarn check:format
lint:
needs: [format]
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up env
uses: the-guild-org/shared-config/setup@v1
with:
node-version-file: .node-version
- name: Check
run: yarn check:lint
types:
needs: [lint]
name: Types
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up env
uses: the-guild-org/shared-config/setup@v1
with:
node-version-file: .node-version
- name: Check
run: yarn check:types
build: # making sure build works so it doesn't fail on us during release
needs: [types]
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up env
uses: the-guild-org/shared-config/setup@v1
with:
node-version-file: .node-version
- name: Check
run: yarn build
bundle: # making sure bundle works so it doesn't fail on us during release
needs: [build]
name: Bundle
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up env
uses: the-guild-org/shared-config/setup@v1
with:
node-version-file: .node-version
- name: Build
run: yarn build
- name: Check
run: yarn bundle