Skip to content

Merge pull request #10 from waterbustech/fix/chat #54

Merge pull request #10 from waterbustech/fix/chat

Merge pull request #10 from waterbustech/fix/chat #54

Workflow file for this run

name: Analyze & Test
on:
push:
branches:
- '*'
tags:
- '*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: unit test
run: |
yarn
yarn build
yarn lint
yarn test
env:
CI: true