Skip to content

Commit

Permalink
Issue salesforce#213 -- added gh-actions flow for building and testin…
Browse files Browse the repository at this point in the history
…g tough-cookie with all current version of node. This should replace our Travis testing.
  • Loading branch information
awaterma committed Sep 21, 2021
1 parent 1b25269 commit 7d63bae
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: [ main ]
pull_request:
branches: [ main ]

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 7d63bae

Please sign in to comment.