Skip to content

Thorchain query dependency #9

Thorchain query dependency

Thorchain query dependency #9

Workflow file for this run

name: Build and test workflow
on:
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "20.x"
- name: Cache Yarn packages
uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn && yarn yarn-audit-ci --high
- name: Build packages
run: yarn build
- name: Build examples
run: yarn build:examples
- name: Lint
run: yarn lint
- name: Test
run: yarn test