Skip to content

Configure Renovate

Configure Renovate #15

Workflow file for this run

name: Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
chore:
name: Check chores
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies and check no updates on lockfile
shell: bash
run: yarn install --immutable
- name: Build packages
run: yarn build