Skip to content

feat: bump svgi version to 1.1.2 #18

feat: bump svgi version to 1.1.2

feat: bump svgi version to 1.1.2 #18

Workflow file for this run

name: SVGI Testing
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 17.x]
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"
- name: Install
run: npm install
- name: Run tests
run: npm run test:ci