Skip to content

Commit

Permalink
add required workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Judahmeek committed Nov 13, 2023
1 parent 6f7269a commit 7dc7103
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 13 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/lint-js-and-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ on:
branches:
- 'master'
pull_request:
paths:
- '**.*'

jobs:
build:
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ on:
branches:
- 'master'
pull_request:
paths:
- '**.*'

jobs:
build-dummy-app-webpack-test-bundles:
strategy:
matrix:
ruby: [2.7, 3.2]
node: [16, 18]
node: [14, 16, 18]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -85,8 +83,8 @@ jobs:
needs: build-dummy-app-webpack-test-bundles
strategy:
matrix:
ruby: [2.7]
node: [14]
ruby: [2.7, 3.2]
node: [14, 16, 18]
rake_task: ['run_rspec:all_but_examples', 'run_rspec:examples']
runs-on: ubuntu-22.04
steps:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/package-js-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ on:
branches:
- 'master'
pull_request:
paths:
- '**.*'

jobs:
build:
strategy:
matrix:
node: [16, 18]
node: [14, 16, 18]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/rspec-package-specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ on:
branches:
- 'master'
pull_request:
paths:
- '**.*'

jobs:
build:
strategy:
matrix:
ruby: [2.7, 3.2]
node: [16, 18]
node: [14, 16, 18]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 7dc7103

Please sign in to comment.