Skip to content

Commit

Permalink
Issue #213 -- added gh-actions flow for building and testing tough-co… (
Browse files Browse the repository at this point in the history
#218)

* Issue #213 -- added gh-actions flow for building and testing tough-cookie with all current version of node. This should replace our Travis testing.
* 213 -- Updated target branch for workflow.
  • Loading branch information
awaterma committed Sep 27, 2021
1 parent e66a8b1 commit 713403e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/integration.yaml
@@ -0,0 +1,26 @@
name: Actions-CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies and test
run: npm ci
- run: npm test

0 comments on commit 713403e

Please sign in to comment.