Skip to content

Commit 93047d5

Browse files
authored
Switches to Github Actions from travis, and adds CHANGELOG (#818)
* Switches to Github Actions over travis, and adds CHNAGELOG entries for recent PRs * formats
1 parent c11e5b3 commit 93047d5

File tree

3 files changed

+37
-14
lines changed

3 files changed

+37
-14
lines changed

.github/workflows/test.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: CI Tests
2+
3+
on:
4+
- pull_request
5+
- push
6+
7+
env:
8+
CI: true
9+
10+
jobs:
11+
unit:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
node-version:
16+
- 8.x
17+
- 10.x
18+
- 12.x
19+
- 14.x
20+
steps:
21+
- uses: actions/checkout@v1
22+
- uses: actions/setup-node@v1
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
26+
- name: Cache npm
27+
uses: actions/cache@v1
28+
with:
29+
path: ~/.npm
30+
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
31+
32+
- run: npm install
33+
- run: npm run lint
34+
- run: npm run format
35+
- run: npm run test

.travis.yml

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

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Adds `4GB` as a `memory` option for `runWith()`.
2+
- Adds support for choosing `ingressSettings` via `runWith()`.

0 commit comments

Comments
 (0)