Skip to content

Merge branch 'stage' into JP69/token-add-yield-eth #2

Merge branch 'stage' into JP69/token-add-yield-eth

Merge branch 'stage' into JP69/token-add-yield-eth #2

name: Lint and Check Format Workflow
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
package: ["web", "stores", "pools", "math"]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache dependencies
uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.OS }}-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-${{ matrix.node-version }}-
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint ${{ matrix.package }} package
run: yarn lint --filter=${{ matrix.package }}