-
Notifications
You must be signed in to change notification settings - Fork 21
34 lines (33 loc) · 808 Bytes
/
verify.yml
File metadata and controls
34 lines (33 loc) · 808 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
name: Verify
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
matrix:
include:
- os: windows
image: windows-latest
arch: ""
- os: macos
image: macos-latest
arch: arm64
- os: macos
image: macos-15-intel
arch: x64
runs-on: ${{ matrix.image }}
permissions:
contents: read
id-token: write
pages: write
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: yarn install
- run: yarn run lint
- run: yarn run typecheck
- run: yarn run build:docs
- run: yarn run make ${{ matrix.arch != '' && '--arch=' || '' }}${{ matrix.arch }}