Skip to content

Commit 8fc3062

Browse files
Merge pull request #17 from intenthq/fou-860-adds-test-action
FOU-860 chore: Adds basic test to repo
2 parents 2e5b824 + 712059d commit 8fc3062

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/test.yml

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

0 commit comments

Comments
 (0)