Skip to content

Commit

Permalink
extend support back to node v12.17
Browse files Browse the repository at this point in the history
Remove support for CommonJS
  • Loading branch information
75lb committed Sep 3, 2021
1 parent e48f038 commit e3096b3
Show file tree
Hide file tree
Showing 10 changed files with 347 additions and 6,576 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

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

jobs:
build:

runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run test
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit e3096b3

Please sign in to comment.