-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (50 loc) · 1.44 KB
/
preview.yml
File metadata and controls
63 lines (50 loc) · 1.44 KB
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
58
59
60
61
62
63
name: Publish preview from PR
on:
pull_request:
paths:
- 'typescript/**'
- '!typescript/**/*.md' # Exclude markdown files using ! prefix
- '!typescript/README.md'
jobs:
publish-to-pkg-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
working-directory: ./typescript
run: npm ci
- name: Run tests
working-directory: ./typescript
run: npm test
- name: Generate types and build package
working-directory: ./typescript
run: |
npm run generate-types
npm run build
- name: Prepare package for publishing
working-directory: ./typescript
run: |
npm pack
- name: List files in typescript dir
working-directory: ./typescript
run: |
ls -la
- name: Create git symlink
run: ln -s ../.git typescript/.git
# - name: Mv tgz to root
# working-directory: ./typescript
# run: |
# mv *.tgz ../
- name: List files in root
run: |
ls -la
- name: Publish preview
working-directory: ./typescript
run: npx pkg-pr-new publish