Skip to content

feat: add test reports to acceptance tests workflow #51

feat: add test reports to acceptance tests workflow

feat: add test reports to acceptance tests workflow #51

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ main, release/** ]
push:
branches: [ main, release/** ]
tags: [ v* ]
concurrency:
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test-node:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Use Node.js TLS 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Create .env file
run: cp ./packages/relay/tests/test.env .env
- name: Install pnpm
run: npm install -g pnpm
- name: Build Typescript and Run tests
run: npm run build-and-test
- name: Upload coverage report
if: ${{ always() && !cancelled() }}
run: node_modules/codecov/bin/codecov