Skip to content

chore: run test in ci (#42) #2

chore: run test in ci (#42)

chore: run test in ci (#42) #2

Workflow file for this run

name: CI
on:
pull_request:
types: [ opened, synchronize ]
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.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: 'yarn'
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Run Jest tests
run: yarn test