Skip to content

Commit bd5b528

Browse files
maxidragonBaderBC
andauthored
Create test.yml (#31)
* Create test.yml * Review changes * Update .github/workflows/test.yml Co-authored-by: Bartłomiej Strama <80683535+BaderBC@users.noreply.github.com> --------- Co-authored-by: Bartłomiej Strama <80683535+BaderBC@users.noreply.github.com>
1 parent b9eafaf commit bd5b528

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test
2+
on:
3+
pull_request:
4+
push:
5+
branches: ["main"]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
node-version: [18.x]
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Setup Node
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: ${{ matrix.node-version }}
19+
- name: Install dependencies and run checks
20+
run: yarn

0 commit comments

Comments
 (0)