|
|
@ -28,9 +28,9 @@ jobs: |
|
|
|
CI_RETRY_COUNT: 3 |
|
|
|
CI_RETRY_COUNT: 3 |
|
|
|
LOCAL_DEV_CHECK: 1 |
|
|
|
LOCAL_DEV_CHECK: 1 |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
- name: cache |
|
|
|
- name: cache |
|
|
|
uses: actions/cache@v2 |
|
|
|
uses: actions/cache@v3 |
|
|
|
with: |
|
|
|
with: |
|
|
|
path: /tmp/cache |
|
|
|
path: /tmp/cache |
|
|
|
key: ${{ runner.os }}-ruby32-core-tests-units-${{ hashFiles('**/Gemfile.lock') }} |
|
|
|
key: ${{ runner.os }}-ruby32-core-tests-units-${{ hashFiles('**/Gemfile.lock') }} |
|
|
@ -58,9 +58,9 @@ jobs: |
|
|
|
CAPYBARA_AWS_ACCESS_KEY_ID: "${{ secrets.CAPYBARA_AWS_ACCESS_KEY_ID }}" |
|
|
|
CAPYBARA_AWS_ACCESS_KEY_ID: "${{ secrets.CAPYBARA_AWS_ACCESS_KEY_ID }}" |
|
|
|
CAPYBARA_AWS_SECRET_ACCESS_KEY: "${{ secrets.CAPYBARA_AWS_SECRET_ACCESS_KEY }}" |
|
|
|
CAPYBARA_AWS_SECRET_ACCESS_KEY: "${{ secrets.CAPYBARA_AWS_SECRET_ACCESS_KEY }}" |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
- name: cache |
|
|
|
- name: cache |
|
|
|
uses: actions/cache@v2 |
|
|
|
uses: actions/cache@v3 |
|
|
|
with: |
|
|
|
with: |
|
|
|
path: /tmp/cache |
|
|
|
path: /tmp/cache |
|
|
|
key: ${{ runner.os }}-ruby32-core-tests-features-${{ hashFiles('**/Gemfile.lock') }} |
|
|
|
key: ${{ runner.os }}-ruby32-core-tests-features-${{ hashFiles('**/Gemfile.lock') }} |
|
|
@ -81,11 +81,11 @@ jobs: |
|
|
|
if: github.repository == 'opf/openproject' |
|
|
|
if: github.repository == 'opf/openproject' |
|
|
|
runs-on: [ubuntu-latest] |
|
|
|
runs-on: [ubuntu-latest] |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
- uses: ruby/setup-ruby@v1 |
|
|
|
- uses: ruby/setup-ruby@v1 |
|
|
|
with: |
|
|
|
with: |
|
|
|
bundler-cache: true |
|
|
|
bundler-cache: true |
|
|
|
- uses: actions/setup-node@v2 |
|
|
|
- uses: actions/setup-node@v3 |
|
|
|
with: |
|
|
|
with: |
|
|
|
node-version: '14' |
|
|
|
node-version: '14' |
|
|
|
- run: ./script/api/validate_spec |
|
|
|
- run: ./script/api/validate_spec |
|
|
|