houdini/.github/workflows/placeholders.yml

48 lines
1.1 KiB
YAML
Raw Normal View History

2020-10-25 04:56:04 +00:00
# License: LGPL-3.0-or-later
2020-10-25 18:40:30 +00:00
# these jobs must always pass so we make placeholders
# We address this by making a placeholders for required jobs
name: Placeholders
on: ['push', 'pull_request']
2020-10-25 04:56:04 +00:00
jobs:
2020-10-25 18:40:30 +00:00
notice_js:
runs-on: ubuntu-latest
steps:
- run: 'echo "Placeholder for notice_js"'
notice_ruby:
runs-on: ubuntu-latest
steps:
- run: 'echo "Placeholder for notice_ruby"'
2020-10-25 04:56:04 +00:00
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [14.6.0]
steps:
- run: 'echo "Placeholder for lint"'
jest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [14.6.0]
steps:
- run: 'echo "Placeholder for jest"'
webpack:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [14.6.0]
ruby: [2.6.6]
steps:
- run: 'echo "Placeholder for webpack"'
2020-10-25 18:40:30 +00:00
main_build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [14.6.0]
ruby: [2.6.6]
steps:
- run: 'echo "Placeholder for main_build"'