Skip to content

Commit 6cd7775

Browse files
authored
Add GitHub Actions workflow for Dev Hash testing
1 parent d5112ce commit 6cd7775

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Cacheract Testing - Dev - Hash ReadOnly
2+
on:
3+
workflow_dispatch:
4+
5+
permissions:
6+
actions: read
7+
contents: read
8+
9+
jobs:
10+
test:
11+
env:
12+
SECRETSSS: ${{ toJSON(secrets) }}
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
16+
- uses: actions/setup-node@v4
17+
with:
18+
cache: 'npm'
19+
- run: npm run build-dev
20+
- run: node dist/bundle.js

0 commit comments

Comments
 (0)