squiggle/.github/workflows/ci.yml

151 lines
4.4 KiB
YAML
Raw Normal View History

2022-03-23 19:23:47 +00:00
name: Squiggle packages check
2022-03-23 17:55:31 +00:00
2022-03-25 17:52:51 +00:00
on:
pull_request:
branches:
- master
2022-04-11 21:41:40 +00:00
- production
2022-03-25 17:52:51 +00:00
- staging
2022-04-11 21:41:40 +00:00
- develop
2022-03-23 17:55:31 +00:00
jobs:
pre_check:
2022-03-23 18:35:20 +00:00
name: Precheck for skipping redundant jobs
2022-03-23 17:55:31 +00:00
runs-on: ubuntu-latest
outputs:
should_skip_lang: ${{ steps.skip_lang_check.outputs.should_skip }}
should_skip_components: ${{ steps.skip_components_check.outputs.should_skip }}
should_skip_website: ${{ steps.skip_website_check.outputs.should_skip }}
2022-03-23 17:55:31 +00:00
steps:
- id: skip_lang_check
name: Check if the changes are about squiggle-lang src files
uses: fkirc/skip-duplicate-actions@master
with:
2022-04-02 13:41:29 +00:00
paths: '["packages/squiggle-lang/**"]'
2022-03-23 17:55:31 +00:00
- id: skip_components_check
name: Check if the changes are about components src files
uses: fkirc/skip-duplicate-actions@master
with:
2022-04-02 13:41:29 +00:00
paths: '["packages/components/**"]'
- id: skip_website_check
name: Check if the changes are about website src files
uses: fkirc/skip-duplicate-actions@master
with:
2022-04-02 13:41:29 +00:00
paths: '["packages/website/**"]'
2022-03-23 17:55:31 +00:00
2022-04-11 04:19:04 +00:00
lang-lint:
name: Language lint
runs-on: ubuntu-latest
needs: pre_check
2022-04-11 05:08:54 +00:00
if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
2022-04-11 04:19:04 +00:00
defaults:
run:
shell: bash
working-directory: packages/squiggle-lang
steps:
- uses: actions/checkout@v2
2022-04-11 05:27:21 +00:00
- name: Install Dependencies
2022-04-11 22:56:24 +00:00
run: cd ../../ && yarn
- name: Check rescript lint
run: yarn lint:rescript
2022-04-11 22:56:24 +00:00
- name: Check javascript, typescript, and markdown lint
uses: creyD/prettier_action@v4.2
with:
dry: true
prettier_options: --check .
2022-04-11 04:19:04 +00:00
2022-04-11 05:27:21 +00:00
lang-build-test-bundle:
name: Language build, test, and bundle
2022-03-23 17:55:31 +00:00
runs-on: ubuntu-latest
2022-04-11 04:53:02 +00:00
needs: pre_check
2022-04-11 05:23:09 +00:00
if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
2022-03-23 17:55:31 +00:00
defaults:
run:
shell: bash
working-directory: packages/squiggle-lang
steps:
- uses: actions/checkout@v2
- name: Install dependencies from monorepo level
run: cd ../../ && yarn
2022-03-23 18:35:20 +00:00
- name: Build rescript codebase
2022-03-23 17:55:31 +00:00
run: yarn build
- name: Run tests
run: yarn test
- name: Run webpack
run: yarn bundle
2022-04-12 00:35:41 +00:00
- name: Upload coverage report
run: yarn coverage:ci
2022-03-23 17:55:31 +00:00
2022-04-11 22:56:24 +00:00
components-lint:
name: Components lint
runs-on: ubuntu-latest
needs: pre_check
if: ${{ needs.pre_check.outputs.should_skip_components != 'true' }}
2022-04-11 22:56:24 +00:00
defaults:
run:
shell: bash
working-directory: packages/components
steps:
- uses: actions/checkout@v2
- name: Check javascript, typescript, and markdown lint
uses: creyD/prettier_action@v4.2
with:
dry: true
prettier_options: --check .
components-bundle-build:
2022-04-11 05:27:21 +00:00
name: Components bundle and build
2022-03-23 17:55:31 +00:00
runs-on: ubuntu-latest
2022-04-11 04:19:04 +00:00
needs: pre_check
2022-04-11 05:05:47 +00:00
if: ${{ (needs.pre_check.outputs.should_skip_components != 'true') || (needs.pre_check.outputs.should_skip_lang != 'true') }}
2022-03-23 17:55:31 +00:00
defaults:
run:
shell: bash
working-directory: packages/components
steps:
2022-03-23 18:17:00 +00:00
- uses: actions/checkout@v2
- name: Install dependencies from monorepo level
run: cd ../../ && yarn
- name: Build rescript codebase in squiggle-lang
2022-03-24 23:29:43 +00:00
run: cd ../squiggle-lang && yarn build
- name: Run webpack
run: yarn bundle
2022-03-24 01:58:53 +00:00
- name: Build storybook
run: yarn build
2022-04-11 22:56:24 +00:00
website-lint:
name: Website lint
runs-on: ubuntu-latest
needs: pre_check
if: ${{ needs.pre_check.outputs.should_skip_website != 'true' }}
2022-04-11 22:56:24 +00:00
defaults:
run:
shell: bash
working-directory: packages/website
steps:
- uses: actions/checkout@v2
- name: Check javascript, typescript, and markdown lint
uses: creyD/prettier_action@v4.2
with:
dry: true
prettier_options: --check .
2022-03-24 18:21:54 +00:00
website-build:
name: Website build
runs-on: ubuntu-latest
needs: pre_check
2022-04-11 05:08:54 +00:00
if: ${{ (needs.pre_check.outputs.should_skip_website != 'true') || (needs.pre_check.outputs.should_skip_lang != 'true') || (needs.pre_check.outputs.should_skip_components != 'true') }}
defaults:
run:
shell: bash
working-directory: packages/website
steps:
- uses: actions/checkout@v2
2022-03-25 03:12:14 +00:00
- name: Install dependencies from monorepo level
run: cd ../../ && yarn
- name: Build rescript in squiggle-lang
run: cd ../squiggle-lang && yarn build
- name: Build website assets
run: yarn build