Skip to content

Branch test of rework-axios-api-for-public-backend (rtrembecky's PR) #779

Branch test of rework-axios-api-for-public-backend (rtrembecky's PR)

Branch test of rework-axios-api-for-public-backend (rtrembecky's PR) #779

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