diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..913a23c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,15 @@ +name: CI +on: [push] +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node: ['16', '18', '20'] + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node }} + - run: npm ci + - run: npm test diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8372245..0000000 --- a/.travis.yml +++ /dev/null @@ -1,15 +0,0 @@ -language: node_js -node_js: - - 10 - - 12 - - 14 - - 15 - -arch: - - amd64 - - ppc64le - -matrix: - exclude: - - node_js: '0.12' - arch: ppc64le