Skip to content

Merge branch 'master' of github.com:minhducsun2002/node-osr-parser #25

Merge branch 'master' of github.com:minhducsun2002/node-osr-parser

Merge branch 'master' of github.com:minhducsun2002/node-osr-parser #25

Workflow file for this run

name: Jest tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 11.x, 12.x, 13.x]
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Node modules
run: npm install
- name: Jest tests
run: npm test
env:
CI: true