-
Notifications
You must be signed in to change notification settings - Fork 4
41 lines (33 loc) · 979 Bytes
/
ci-ts.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
35
36
37
38
39
40
41
name: CI-TS
on:
push:
paths:
- "**/meet/**"
- "**/ci-ts.yml"
- "**/.eslintrc.json"
- "**/.node-version"
- "**/package.json"
- "**/pnpm-lock.yaml"
workflow_dispatch:
env:
CI: true
# Cancel old builds on new commit for same workflow + branch/PR
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: false
jobs:
ci-ts:
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
# Will figure out a better way to do these later
- name: Install Global Dependencies
run: bun install --ignore-scripts
# Errors out on build when separated into multiple steps
- name: Install, Build, and Lint Meet
run: cd meet && bun install --ignore-scripts && bun run build && bun run lint