Skip to content

Commit 278f1b1

Browse files
authored
add popup animation (#121)
* clean up event listeners * add enter/exit animation * bump version * add tests * tidy up pop-up handler
1 parent cc72156 commit 278f1b1

File tree

10 files changed

+2267
-45
lines changed

10 files changed

+2267
-45
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v3
15+
with:
16+
node-version: 22
17+
- run: npm install
18+
- run: npm test
19+
- run: npm run build

.github/workflows/release-dev.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
with:
1212
node-version: 18
1313
- run: npm install
14+
- run: npm test
1415
- run: npm run build
1516

1617
publish-gpr:
@@ -26,6 +27,7 @@ jobs:
2627
node-version: 18
2728
registry-url: "https://registry.npmjs.org"
2829
- run: npm install
30+
- run: npm test
2931
- run: npm run build
3032
- run: npm publish --access public --tag dev
3133
env:

.github/workflows/release-package.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
with:
1414
node-version: 22
1515
- run: npm install
16+
- run: npm test
1617
- run: npm run build
1718

1819
publish-gpr:
@@ -28,6 +29,7 @@ jobs:
2829
node-version: 22
2930
registry-url: "https://registry.npmjs.org"
3031
- run: npm install
32+
- run: npm test
3133
- run: npm run build
3234
- run: npm publish --access public
3335
env:

0 commit comments

Comments
 (0)