Skip to content

chore: bump sor to 3.35.7 (#754) #2131

chore: bump sor to 3.35.7 (#754)

chore: bump sor to 3.35.7 (#754) #2131

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
env:
GQL_URL: ${{ secrets.UNI_GRAPHQL_ENDPOINT }}
GQL_H_ORGN: ${{ secrets.UNI_GRAPHQL_HEADER_ORIGIN }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: https://registry.npmjs.org
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run unit tests
run: npm run test:unit
- name: Run integration tests
run: npm run test:integ