Skip to content

working on getting build to work #87

working on getting build to work

working on getting build to work #87

Workflow file for this run

name: CI
on: [pull_request, push]
jobs:
prepare:
name: Prepare
runs-on: ubuntu-latest
steps:
- uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
build:
name: Build
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
- uses: actions/cache@v3
with:
path: build
key: build-${{ github.run_id }}
- run: cd src && yarn && yarn build
test-deposit:
needs: build
runs-on: ubuntu-latest
steps:
- uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
- uses: actions/cache@v3
with:
path: build
key: build-${{ github.run_id }}
- run: cd tests && yarn && yarn test:deposit
test-oracle:
needs: build
runs-on: ubuntu-latest
steps:
- uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
- uses: actions/cache@v3
with:
path: build
key: build-${{ github.run_id }}
- run: cd tests && yarn && yarn test:oracle
test-ostats:
needs: build
runs-on: ubuntu-latest
steps:
- uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
- uses: actions/cache@v3
with:
path: build
key: build-${{ github.run_id }}
- run: cd tests && yarn && yarn test:ostats
test-pwrreport:
needs: build
runs-on: ubuntu-latest
steps:
- uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
- uses: actions/cache@v3
with:
path: build
key: build-${{ github.run_id }}
- run: cd tests && yarn && yarn test:pwrreport
test-slash:
needs: build
runs-on: ubuntu-latest
steps:
- uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
- uses: actions/cache@v3
with:
path: build
key: build-${{ github.run_id }}
- run: cd tests && yarn && yarn test:slash