Skip to content

Commit 67be410

Browse files
committed
workflow
1 parent 45639db commit 67be410

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/validate.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Validate Changes
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
push:
7+
8+
9+
defaults:
10+
run:
11+
shell: bash
12+
13+
jobs:
14+
unit-tests:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v3
20+
21+
- name: Use Node.js
22+
uses: actions/setup-node@v2
23+
with:
24+
node-version: 18
25+
26+
- name: Install dependencies
27+
run: yarn
28+
29+
- name: Run Jest tests
30+
run: yarn test

0 commit comments

Comments
 (0)