generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
34 lines (33 loc) · 822 Bytes
/
test.yml
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: "CI"
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
- run: |
yarn install
- run: |
yarn all
test: # make sure the action works on a clean machine without building
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
tectonic-version: 0.12.0
biber-version: 2.16
- name: Tectonic version
run: tectonic --version
- name: Biber version
run: biber --version