-
Notifications
You must be signed in to change notification settings - Fork 11
40 lines (33 loc) · 1008 Bytes
/
test-ts-browser.yml
File metadata and controls
40 lines (33 loc) · 1008 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
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}-test-ts-browser"
cancel-in-progress: true
on:
workflow_call:
workflow_dispatch:
env:
RELEASE: 1
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: wireapp/setup-chrome@master
id: setup-chrome
with:
chrome-version: stable
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: download web files
uses: ./.github/actions/make/ts/browser
with:
gh-token: ${{ secrets.GITHUB_TOKEN }}
artifact-generation: ${{ vars.ARTIFACT_GENERATION }}
- name: test
uses: ./.github/actions/make
with:
key: ts-browser-test
make-rule: ts-browser-test
always-run: ${{ github.event_name == 'workflow_dispatch' || github.ref_name == 'main' }}
gh-token: ${{ secrets.GITHUB_TOKEN }}
artifact-generation: ${{ vars.ARTIFACT_GENERATION }}