Skip to content

Merge pull request #24 from Agoric/rs-refactor-fetching-logs #18

Merge pull request #24 from Agoric/rs-refactor-fetching-logs

Merge pull request #24 from Agoric/rs-refactor-fetching-logs #18

Workflow file for this run

name: Unit Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test