Skip to content

Run tests and linter in github workflows (#3) #4

Run tests and linter in github workflows (#3)

Run tests and linter in github workflows (#3) #4

Workflow file for this run

name: Run integration tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test