Skip to content

Commit

Permalink
ci(snackbar): add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Jun 22, 2024
1 parent c61bbab commit 4952e97
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci_test_core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@ jobs:
ci_test_overlay:
needs: ci_test_core
uses: ./.github/workflows/ci_test_overlay.yml

ci_test_snackbar:
needs: ci_test_core
uses: ./.github/workflows/ci_test_snackbar.yml
26 changes: 26 additions & 0 deletions .github/workflows/ci_test_snackbar.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test snackbar

on:
workflow_dispatch:
workflow_call:
push:
branches:
- '**'
tags-ignore:
- '**'
paths:
- '.github/workflows/ci_test_snackbar.yml'
- 'projects/snackbar/**'

concurrency:
group: ci-test-snackbar-group-${{ github.ref }}
cancel-in-progress: true

jobs:
ci_test_snackbar:
if: "${{ !contains(github.event.head_commit.message, 'chore(release): publish') }}"
uses: dsi-hug/action/.github/workflows/action.yml@v1
with:
working-directory: projects/snackbar
runs-on: '["ubuntu-latest", "macos-latest", "windows-latest"]'
node-versions: '[18, 20]'

0 comments on commit 4952e97

Please sign in to comment.