Skip to content

Adding a draft of a filter button #100

Adding a draft of a filter button

Adding a draft of a filter button #100

Workflow file for this run

name: Build DEV
on:
push:
branches-ignore:
- "main"
jobs:
Build:
runs-on: ubuntu-latest
environment: DEV
strategy:
matrix:
project:
- strapi
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn
working-directory: ${{ matrix.project }}
- name: Build
run: yarn build
working-directory: ${{ matrix.project }}