Skip to content

Increase version for release (0.9.0 -> 0.9.1) #46

Increase version for release (0.9.0 -> 0.9.1)

Increase version for release (0.9.0 -> 0.9.1) #46

Workflow file for this run

name: Build and Test
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: browser-actions/setup-chrome@latest
- run: chrome --version
- name: Build and Test
run: |
npm install &&
npm run build &&
npm run test
env:
CI: true