Skip to content

Commit 5979912

Browse files
authored
v2.0.0 - Release (#10)
* v2 changes * . * . * gha * lock * v * 2.0.0 (#11)
1 parent 54a9ed4 commit 5979912

File tree

7 files changed

+4083
-15
lines changed

7 files changed

+4083
-15
lines changed

.github/workflows/pr-verifcation.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: pr-verification
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
- main
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [14.x, 15.x, 16.x]
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
- run: npm ci
25+
- run: npm run build --if-present
26+
- run: npm test

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,3 @@ coverage/
3232
*.tpm
3333
.idea/
3434
lib/
35-
yarn.lock
36-
package-lock.json

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4
1+
14

.travis.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
language: node_js
22
node_js:
3-
- "0.10"
4-
- "4.2"
5-
- "10"
3+
- "14"
4+
- "16"

0 commit comments

Comments
 (0)