Skip to content

Update pull request script #1

Update pull request script

Update pull request script #1

Workflow file for this run

name: Run tests
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v1
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Setup yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test