Skip to content

build: update watch methods and include css in build #243

build: update watch methods and include css in build

build: update watch methods and include css in build #243

Workflow file for this run

name: 'On push ⚙️'
on:
push:
branches:
- main
- beta
- alpha
paths-ignore:
- ./**/*.md
- ./.idea/**
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
build:
uses: ./.github/workflows/build.yml
secrets: inherit
test:
needs: build
uses: ./.github/workflows/test.yml
secrets: inherit
rebase-prs:
needs:
- test
- build
uses: ./.github/workflows/rebase-prs.yml
secrets: inherit
notify-on-failure:
needs:
- test
- build
- rebase-prs
if: always() && contains(needs.*.result, 'failure')
uses: myparcelnl/actions/.github/workflows/notify-on-failure.yml@v4
secrets: inherit