-
Notifications
You must be signed in to change notification settings - Fork 353
57 lines (47 loc) · 1.19 KB
/
lang-dot-build.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Build and test lang-dot package
on:
push:
branches-ignore:
- v2
- gh-pages
paths:
- "packages/lang-dot/**"
workflow_call: {}
permissions:
contents: read
jobs:
build:
name: Build and test lang-dot package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: "Run build and test"
run: |
yarn install --frozen-lockfile
yarn build
yarn test
working-directory: packages/lang-dot
- uses: actions/upload-artifact@v4
with:
name: dist
path: packages/lang-dot/dist
test-types:
name: Test types
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: "Run yarn install in package directory"
run: |
yarn install --frozen-lockfile
working-directory: packages/lang-dot
- name: "Run check-types"
run: |
yarn install --frozen-lockfile
yarn check-types
working-directory: packages/lang-dot/test/types