Skip to content

Commit fa0f1e4

Browse files
authored
Merge pull request #40 from eugene-serb/development
Release 1.3.2
2 parents 20dda9b + 3e85959 commit fa0f1e4

File tree

7 files changed

+2697
-943
lines changed

7 files changed

+2697
-943
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: eugene-serb

.github/workflows/build.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
- development
11+
workflow_dispatch:
12+
13+
jobs:
14+
build:
15+
16+
strategy:
17+
matrix:
18+
node-version: [ 18.x ]
19+
os: [ ubuntu-latest ]
20+
21+
runs-on: ${{ matrix.os }}
22+
23+
steps:
24+
- uses: actions/checkout@v3
25+
- name: Use Node.js ${{ matrix.node-version }}
26+
uses: actions/setup-node@v3
27+
with:
28+
node-version: ${{ matrix.node-version }}
29+
cache: 'npm'
30+
- run: npm install
31+
- run: npm run build
32+

.github/workflows/lint.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Lint
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
- development
11+
workflow_dispatch:
12+
13+
jobs:
14+
lint:
15+
16+
strategy:
17+
matrix:
18+
node-version: [ 18.x ]
19+
os: [ ubuntu-latest ]
20+
21+
runs-on: ${{ matrix.os }}
22+
23+
steps:
24+
- uses: actions/checkout@v3
25+
- name: Use Node.js ${{ matrix.node-version }}
26+
uses: actions/setup-node@v3
27+
with:
28+
node-version: ${{ matrix.node-version }}
29+
cache: 'npm'
30+
- run: npm install
31+
- run: npm run lint
32+

.github/workflows/test.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
- development
11+
workflow_dispatch:
12+
13+
jobs:
14+
test:
15+
16+
strategy:
17+
matrix:
18+
node-version: [ 18.x ]
19+
os: [ ubuntu-latest ]
20+
21+
runs-on: ${{ matrix.os }}
22+
23+
steps:
24+
- uses: actions/checkout@v3
25+
- name: Use Node.js ${{ matrix.node-version }}
26+
uses: actions/setup-node@v3
27+
with:
28+
node-version: ${{ matrix.node-version }}
29+
cache: 'npm'
30+
- run: npm install
31+
- run: npm run test
32+

0 commit comments

Comments
 (0)