Skip to content

chore: swap travis for github actions #1

chore: swap travis for github actions

chore: swap travis for github actions #1

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14.x', '16.x', '18.x']
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test