From 16213ddddb477a21b16150a9585b4f628239a959 Mon Sep 17 00:00:00 2001 From: Quinn Dougherty Date: Wed, 23 Mar 2022 13:55:31 -0400 Subject: [PATCH] added components to ci --- .github/workflows/ci.yaml | 58 +++++++++++++++++++++++++++++ .github/workflows/lang-jest.yml | 19 ---------- README.md | 4 +- package.json | 6 +-- packages/squiggle-lang/package.json | 4 +- 5 files changed, 65 insertions(+), 26 deletions(-) create mode 100644 .github/workflows/ci.yaml delete mode 100644 .github/workflows/lang-jest.yml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..c15f05d3 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,58 @@ +name: Squiggle Lang Jest Tests + +on: [push] + +jobs: + + pre_check: + 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 }} + steps: + - id: skip_lang_check + name: Check if the changes are about squiggle-lang src files + uses: fkirc/skip-duplicate-actions@master + with: + paths: '["packages/squiggle-lange/*"]' + - id: skip_components_check + name: Check if the changes are about components src files + uses: fkirc/skip-duplicate-actions@master + with: + paths: '["packages/components/*"]' + + lang-build-test: + name: Squiggle language build and test + runs-on: ubuntu-latest + needs: pre_check + if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' }} + defaults: + run: + shell: bash + working-directory: packages/squiggle-lang + steps: + - uses: actions/checkout@v2 + - name: Install packages + run: yarn + - name: Build rescript + run: yarn build + - name: Run tests + run: yarn test + + components-build-test: + name: Squiggle components build and test + runs-on: ubuntu-latest + needs: pre_check + if: ${{ needs.pre_check.outputs.should_skip_components != 'true' }} + defaults: + run: + shell: bash + working-directory: packages/components + steps: + - users: actions/checkout@v2 + - name: Install packages + run: yarn + - name: See if storybook builds + run: yarn build-storybook + - name: Run tsc + run: yarn ci diff --git a/.github/workflows/lang-jest.yml b/.github/workflows/lang-jest.yml deleted file mode 100644 index 37db411f..00000000 --- a/.github/workflows/lang-jest.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Squiggle Lang Jest Tests - -on: [push] - -jobs: - build: - runs-on: ubuntu-latest - defaults: - run: - shell: bash - working-directory: packages/squiggle-lang - steps: - - uses: actions/checkout@v2 - - name: Install Packages - run: yarn - - name: Build rescript - run: yarn run build - - name: Run tests - run: yarn test diff --git a/README.md b/README.md index f221f35d..bce372b9 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ the components library and the playground. Scripts are available for you in the root directory to do important activities, such as: -`yarn build:lang`. Builds and packages the language -`yarn storybook:components`. Hosts the component storybook +- `yarn build:lang`. Builds and packages the language +- `yarn storybook:components`. Hosts the component storybook # Local playground diff --git a/package.json b/package.json index 15402fcd..8b04c7c5 100644 --- a/package.json +++ b/package.json @@ -7,9 +7,9 @@ "build-storybook:components": "cd packages/components && yarn && yarn build-storybook", "build:components": "cd packages/components && yarn && yarn package", "build:playground": "cd packages/playground && yarn && yarn parcel-build", - "ci:lang": "yarn workspace @squiggle/lang ci", - "ci:components": "yarn ci:lang && yarn workspace @squiggle/components ci", - "ci:playground": "yarn ci:components && yarn workspace @squiggle/playground ci" + "ci:lang": "yarn workspace @quri/squiggle-lang ci", + "ci:components": "yarn ci:lang && yarn workspace @quri/squiggle-components ci", + "ci:playground": "yarn ci:components && yarn workspace @quri/squiggle-playground ci" }, "workspaces": [ "packages/*" diff --git a/packages/squiggle-lang/package.json b/packages/squiggle-lang/package.json index 8469a08a..095440ba 100644 --- a/packages/squiggle-lang/package.json +++ b/packages/squiggle-lang/package.json @@ -1,14 +1,14 @@ { "name": "@quri/squiggle-lang", "version": "0.2.2", - "homepage": "https://foretold-app.github.io/estiband/", + "homepage": "https://squiggle-language.com", "scripts": { "build": "rescript build -with-deps", "bundle": "tsc && webpack", "start": "rescript build -w -with-deps", "clean": "rescript clean", "test": "jest", - "test:ci": "yarn jest ./__tests__/Lodash__test.re", + "test:ci": "yarn jest ./__tests__/Lodash__test.res", "watch:test": "jest --watchAll", "watch:s": "yarn jest -- Converter_test --watch", "package": "tsc",