Skip to content

feat: more integration tests #32

feat: more integration tests

feat: more integration tests #32

Workflow file for this run

name: Integration
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.20"
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Setup yarn
run: npm install -g yarn
- name: Run integration tests
run: make integration-tests
env:
TMPDIR: "${{ runner.temp }}"