We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80292b5 commit 4fd64baCopy full SHA for 4fd64ba
.github/workflows/preview.yml
@@ -0,0 +1,25 @@
1
+name: Publish Preview
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - "**"
7
+ tags:
8
+ - "!**"
9
+
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: '20.x'
19
+ registry-url: 'https://registry.npmjs.org'
20
+ scope: '@ts-defold'
21
+ - run: npm ci
22
+ - run: |
23
+ npm run lint
24
+ npm run bundle
25
+ - run: npx pkg-pr-new publish
0 commit comments