Skip to content

Commit 86deed7

Browse files
committed
Add build
1 parent 5d9b48b commit 86deed7

File tree

1,072 files changed

+22526
-202944
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,072 files changed

+22526
-202944
lines changed

.github/warp-logo@2x.png

-78.6 KB
Binary file not shown.

.github/workflows/test.yaml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: 'build-test'
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- master
7+
- 'releases/*'
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: '22'
17+
cache: 'npm'
18+
- run: npm ci
19+
- run: npm run typecheck
20+
- run: npm run build
21+
- name: Check dist/ is up to date
22+
run: |
23+
if [ "$(git diff --name-only dist/)" != "" ]; then
24+
echo "dist/ is out of date. Run 'npm run build' and commit the result."
25+
git diff dist/
26+
exit 1
27+
fi
28+
29+
test:
30+
needs: build
31+
runs-on: ubuntu-latest
32+
steps:
33+
- uses: actions/checkout@v4
34+
- uses: ./
35+
with:
36+
dep: list
37+
deployer-version: "7.3.0"

.github/workflows/test.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
.idea/
3+
*.log

action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ inputs:
7070

7171
runs:
7272
using: 'node24'
73-
main: 'index.js'
73+
main: 'dist/index.js'
7474

7575
branding:
7676
color: blue

0 commit comments

Comments
 (0)