Skip to content

version bump

version bump #31

name: Test Automation
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.16.0, 18.12.0 ]
steps:
- uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn build
- run: yarn test