Skip to content

Branch test of fix/crossroad-link (Matushl's PR) #703

Branch test of fix/crossroad-link (Matushl's PR)

Branch test of fix/crossroad-link (Matushl's PR) #703

Workflow file for this run

name: branch test
run-name: Branch test of ${{ github.head_ref || github.ref_name }} (${{ github.actor }}'s PR)
on:
push:
branches: master
pull_request:
workflow_dispatch:
jobs:
branch-test:
runs-on: ubuntu-latest
steps:
- name: Check out branch code
uses: actions/checkout@v4
- name: Setup Node.js with Yarn cache
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn
- name: Check whether all possible CSS types are generated
run: yarn css-types:check
- name: Run typecheck
run: yarn tsc
- name: Run ESLint
run: yarn lint