Skip to content

Create test.yml

Create test.yml #1

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
branches:
- "main"
- "develop"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install modules
run: yarn
- name: Run tests
run: yarn test