Branch test of fix-prefetch-rewrites (rtrembecky's PR) #798
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Run typecheck | |
run: yarn tsc | |
- name: Run ESLint | |
run: yarn lint |