-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (33 loc) · 931 Bytes
/
pull-request.yml
File metadata and controls
42 lines (33 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Pull Request Checks
on:
pull_request:
branches:
- '**' # Trigger on all branches
jobs:
test:
name: ⚙️ Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
- name: Fetch target
env:
BASE_REF: ${{ github.event.pull_request.base.ref }}
run: git fetch origin ${{ env.BASE_REF }}
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install
run: yarn install
- name: Lint
run: yarn lint
- name: Build # tsd is designed to test the output type declarations, have to build first
run: yarn build
- name: Run Tests
run: yarn test