Skip to content

Commit

Permalink
Add workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
JoonasAapro committed Dec 20, 2024
1 parent d1797ff commit fef5b02
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci_decidim_apifiles.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "[CI] Apifiles"
on:
push:
branches:
- develop
- main
- release/*
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
build_app:
name: Build test application
uses: mainio/gha-decidim-module/.github/workflows/build_app.yml@main
secrets: inherit
main:
needs: build_app
name: Tests
uses: mainio/gha-decidim-module/.github/workflows/ci_rspec.yml@main
secrets: inherit
21 changes: 21 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "[CI] Lint"
on:
push:
branches:
- develop
- main
- release/*
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
lint:
name: Lint code
uses: mainio/gha-decidim-module/.github/workflows/lint.yml@main
secrets: inherit
with:
eslint: true
stylelint: true

0 comments on commit fef5b02

Please sign in to comment.