Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-zimerman committed Jan 31, 2024
1 parent 3ebd843 commit 2c3db40
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 19 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/buildandtest.yml
Expand Up @@ -15,15 +15,6 @@ on:
- '.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md'
- '.github/workflows/**.yml' #for testing
pull_request:
paths-ignore:
- '.prettierignore'
- 'CHANGELOG.md'
- 'README.md'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- '.github/ISSUE_TEMPLATE/BUG_REPORT.md'
- '.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md'
- '.github/workflows/**.yml' #for testing
jobs:
job_test:
name: Test
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/codegen.yml
Expand Up @@ -5,9 +5,16 @@ on:
branches:
- main
- release/**
uses: ./.github/workflows/skip-ci.yml
paths-ignore:
- '.prettierignore'
- 'CHANGELOG.md'
- 'README.md'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- '.github/ISSUE_TEMPLATE/BUG_REPORT.md'
- '.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md'
- '.github/workflows/**.yml' #for testing
pull_request:
uses: ./.github/workflows/skip-ci.yml

jobs:
codegen:
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/codeql-analysis.yml
Expand Up @@ -14,11 +14,18 @@ name: 'CodeQL'
on:
push:
branches: [main]
uses: ./.github/workflows/skip-ci.yml
paths-ignore:
- '.prettierignore'
- 'CHANGELOG.md'
- 'README.md'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- '.github/ISSUE_TEMPLATE/BUG_REPORT.md'
- '.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md'
- '.github/workflows/**.yml' #for testing
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
uses: ./.github/workflows/skip-ci.yml
schedule:
- cron: '27 16 * * 5'

Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/e2e.yml
Expand Up @@ -3,9 +3,16 @@ name: End-to-End Tests
on:
push:
branches: [main]
uses: ./.github/workflows/skip-ci.yml
paths-ignore:
- '.prettierignore'
- 'CHANGELOG.md'
- 'README.md'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- '.github/ISSUE_TEMPLATE/BUG_REPORT.md'
- '.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md'
- '.github/workflows/**.yml' #for testing
pull_request:
uses: ./.github/workflows/skip-ci.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/native-tests.yml
Expand Up @@ -3,9 +3,16 @@ name: Native Tests
on:
push:
branches: [main]
uses: ./.github/workflows/skip-ci.yml
paths-ignore:
- '.prettierignore'
- 'CHANGELOG.md'
- 'README.md'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- '.github/ISSUE_TEMPLATE/BUG_REPORT.md'
- '.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md'
- '.github/workflows/**.yml' #for testing
pull_request:
uses: ./.github/workflows/skip-ci.yml

jobs:
cancel-previous-workflow:
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/sample-application.yml
Expand Up @@ -3,9 +3,16 @@ name: Sample Application
on:
push:
branches: [main]
uses: ./.github/workflows/skip-ci.yml
paths-ignore:
- '.prettierignore'
- 'CHANGELOG.md'
- 'README.md'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- '.github/ISSUE_TEMPLATE/BUG_REPORT.md'
- '.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md'
- '.github/workflows/**.yml' #for testing
pull_request:
uses: ./.github/workflows/skip-ci.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit 2c3db40

Please sign in to comment.