Skip to content

Commit a8437b0

Browse files
authored
Merge pull request #24 from tddbc/update_dependencies
update deps and travis
2 parents 0eb6f04 + e4f7ee5 commit a8437b0

File tree

3 files changed

+3715
-715
lines changed

3 files changed

+3715
-715
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: ci
3+
4+
on:
5+
push:
6+
branches:
7+
- "*"
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [18.x, 19.x]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Use Node.js ${{ matrix.node-version }}
20+
uses: actions/setup-node@v2
21+
with:
22+
node-version: ${{ matrix.node-version }}
23+
cache: "npm"
24+
- run: npm ci
25+
- run: npm test

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)