Skip to content

Merge pull request #264 from FACT-Finder/renovate/all #2484

Merge pull request #264 from FACT-Finder/renovate/all

Merge pull request #264 from FACT-Finder/renovate/all #2484

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow
- uses: actions/setup-node@v4
with:
node-version: '22'
- name: cache node_modules
uses: actions/cache@v4
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-node_modules-
- run: yarn --frozen-lockfile
- run: yarn docs build
- run: yarn lerna run test
- uses: codecov/[email protected]
- run: yarn lerna run format-check
- run: yarn lerna run lint-check
- run: yarn lerna run build