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 }}
|
2022-03-23 22:51:53 +00:00
|
|
|
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/*"]'
|
2022-03-23 22:51:53 +00:00
|
|
|
- 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
|
2022-03-24 01:18:00 +00:00
|
|
|
- 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
|
2022-03-23 22:34:50 +00:00
|
|
|
- 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 }}
|
2022-03-24 00:18:35 +00:00
|
|
|
- name: Install packages from monorepo level
|
|
|
|
run: cd ../../ && yarn
|
2022-03-23 22:51:53 +00:00
|
|
|
- name: Install packages for components package
|
2022-03-23 17:55:31 +00:00
|
|
|
run: yarn
|
2022-03-24 01:18:00 +00:00
|
|
|
- name: Build storybook
|
2022-03-23 22:34:50 +00:00
|
|
|
run: yarn build
|
|
|
|
- name: Run tsc and webpack
|
|
|
|
run: yarn bundle
|
2022-03-23 22:51:53 +00:00
|
|
|
|
|
|
|
website-dry-build:
|
|
|
|
name: Website dry 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
|