Skip to content

Remove uuid dependency #6

Remove uuid dependency

Remove uuid dependency #6

Workflow file for this run

name: CI workflow
on:
pull_request:
branches:
- master
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install yarn
run: npm install --global yarn
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test
- name: Test build
run: yarn build