mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
f9c3259083
## About the changes Add partial index on events by announced. This should help avoid `Seq Scan on events` when the majority of events are announced=true --- Co-authored-by: Ivar Østhus <ivar@getunleash.io> Co-authored-by: Gard Rimestad <gard@getunleash.io>
26 lines
522 B
YAML
26 lines
522 B
YAML
name: PR -> Build & Lint
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- frontend/**
|
|
- website/**
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.17
|
|
cache: 'yarn'
|
|
- run: yarn install --frozen-lockfile --ignore-scripts
|
|
- run: yarn lint
|
|
- run: yarn build:backend
|