squiggle/.github/workflows/ci.yaml

106 lines
3.1 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
on: [push]
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-03-23 18:17:00 +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:
paths: '["packages/components/*"]'
- id: skip_website_check
name: Check if the changes are about website src files
uses: fkirc/skip-duplicate-actions@master
with:
paths: '["packages/website/*"]'
2022-03-23 17:55:31 +00:00
lang-build-test:
2022-03-23 19:23:47 +00:00
name: Language build and test
2022-03-23 17:55:31 +00:00
runs-on: ubuntu-latest
needs: pre_check
2022-03-24 00:11:27 +00:00
if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' || needs.pre_check.outputs.should_skip_components != '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 packages from monorepo level
# run: cd ../../ && yarn
2022-03-23 17:55:31 +00:00
- name: Install packages
run: 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 tsc and webpack
run: yarn bundle
2022-03-23 23:56:38 +00:00
- name: Cache lang build and bundle outputs
uses: actions/cache@v3
id: lang-outputs
with:
path: |
lib
dist
node_modules
key: ${{ github.sha }}
2022-03-23 17:55:31 +00:00
components-build-test:
2022-03-23 19:23:47 +00:00
name: Components build and test
2022-03-23 17:55:31 +00:00
runs-on: ubuntu-latest
2022-03-23 23:56:38 +00:00
needs: [pre_check, lang-build-test]
2022-03-23 17:55:31 +00:00
if: ${{ needs.pre_check.outputs.should_skip_components != 'true' }}
defaults:
run:
shell: bash
working-directory: packages/components
steps:
2022-03-23 18:17:00 +00:00
- uses: actions/checkout@v2
2022-03-23 23:56:38 +00:00
- name: Gain lang build and bundle outputs from cache
uses: actions/cache@v3
id: lang-outputs
with:
path: |
lib
dist
node_modules
key: ${{ github.sha }}
# - name: Install packages from monorepo level
# run: cd ../../ && yarn
- name: Install packages for components package
2022-03-23 17:55:31 +00:00
run: yarn
2022-03-24 18:52:36 +00:00
- name: Run tsc and webpack # I'm uncertain if bundle comes before build, it was jotted down in a readme that way but it may have been erroneous.
run: yarn bundle
2022-03-24 01:58:53 +00:00
- name: Build storybook
run: yarn build
2022-03-24 18:21:54 +00:00
website-build:
name: Website build
runs-on: ubuntu-latest
needs: pre_check
if: ${{ needs.pre_check.outputs.should_skip_website != 'true' }}
defaults:
run:
shell: bash
working-directory: packages/website
steps:
- uses: actions/checkout@v2
- name: Install packages
run: yarn
- name: Build website assets
run: yarn build