Skip to content

Merge pull request #17 from livepeer/speakeasy-sdk-regen-1718324315 #43

Merge pull request #17 from livepeer/speakeasy-sdk-regen-1718324315

Merge pull request #17 from livepeer/speakeasy-sdk-regen-1718324315 #43

Workflow file for this run

name: Tests CI
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x] # You can specify multiple Node.js versions to test against
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Build the project
run: yarn run build
- name: Run tests
run: yarn run test
- name: Upload Test Results
uses: actions/upload-artifact@v2
if: failure()
with:
name: test-results
path: ./tests/reports/
if-no-files-found: error