yarn format:all
compels me
This commit is contained in:
parent
57dca26d2b
commit
38d0ea79e4
219
.github/workflows/ci.yml
vendored
219
.github/workflows/ci.yml
vendored
|
@ -49,26 +49,26 @@ jobs:
|
||||||
with:
|
with:
|
||||||
paths: '["packages/cli/**"]'
|
paths: '["packages/cli/**"]'
|
||||||
|
|
||||||
# lang-lint:
|
# lang-lint:
|
||||||
# name: Language lint
|
# name: Language lint
|
||||||
# runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
# needs: pre_check
|
# needs: pre_check
|
||||||
# if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
|
# if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
|
||||||
# defaults:
|
# defaults:
|
||||||
# run:
|
# run:
|
||||||
# shell: bash
|
# shell: bash
|
||||||
# working-directory: packages/squiggle-lang
|
# working-directory: packages/squiggle-lang
|
||||||
# steps:
|
# steps:
|
||||||
# - uses: actions/checkout@v3
|
# - uses: actions/checkout@v3
|
||||||
# - name: Install Dependencies
|
# - name: Install Dependencies
|
||||||
# run: cd ../../ && yarn
|
# run: cd ../../ && yarn
|
||||||
# - name: Check rescript lint
|
# - name: Check rescript lint
|
||||||
# run: yarn lint:rescript
|
# run: yarn lint:rescript
|
||||||
# - name: Check javascript, typescript, and markdown lint
|
# - name: Check javascript, typescript, and markdown lint
|
||||||
# uses: creyD/prettier_action@v4.2
|
# uses: creyD/prettier_action@v4.2
|
||||||
# with:
|
# with:
|
||||||
# dry: true
|
# dry: true
|
||||||
# prettier_options: --check packages/squiggle-lang
|
# prettier_options: --check packages/squiggle-lang
|
||||||
|
|
||||||
lang-build-test-bundle:
|
lang-build-test-bundle:
|
||||||
name: Language build, test, and bundle
|
name: Language build, test, and bundle
|
||||||
|
@ -98,96 +98,96 @@ jobs:
|
||||||
- name: Upload typescript coverage report
|
- name: Upload typescript coverage report
|
||||||
run: yarn coverage:ts:ci
|
run: yarn coverage:ts:ci
|
||||||
|
|
||||||
# components-lint:
|
# components-lint:
|
||||||
# name: Components lint
|
# name: Components lint
|
||||||
# runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
# needs: pre_check
|
# needs: pre_check
|
||||||
# if: ${{ needs.pre_check.outputs.should_skip_components != 'true' }}
|
# if: ${{ needs.pre_check.outputs.should_skip_components != 'true' }}
|
||||||
# defaults:
|
# defaults:
|
||||||
# run:
|
# run:
|
||||||
# shell: bash
|
# shell: bash
|
||||||
# working-directory: packages/components
|
# working-directory: packages/components
|
||||||
# steps:
|
# steps:
|
||||||
# - uses: actions/checkout@v3
|
# - uses: actions/checkout@v3
|
||||||
# - name: Check javascript, typescript, and markdown lint
|
# - name: Check javascript, typescript, and markdown lint
|
||||||
# uses: creyD/prettier_action@v4.2
|
# uses: creyD/prettier_action@v4.2
|
||||||
# with:
|
# with:
|
||||||
# dry: true
|
# dry: true
|
||||||
# prettier_options: --check packages/components --ignore-path packages/components/.prettierignore
|
# prettier_options: --check packages/components --ignore-path packages/components/.prettierignore
|
||||||
#
|
#
|
||||||
# components-bundle-build:
|
# components-bundle-build:
|
||||||
# name: Components bundle and build
|
# name: Components bundle and build
|
||||||
# runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
# needs: pre_check
|
# needs: pre_check
|
||||||
# if: ${{ (needs.pre_check.outputs.should_skip_components != 'true') || (needs.pre_check.outputs.should_skip_lang != 'true') }}
|
# if: ${{ (needs.pre_check.outputs.should_skip_components != 'true') || (needs.pre_check.outputs.should_skip_lang != 'true') }}
|
||||||
# defaults:
|
# defaults:
|
||||||
# run:
|
# run:
|
||||||
# shell: bash
|
# shell: bash
|
||||||
# working-directory: packages/components
|
# working-directory: packages/components
|
||||||
# steps:
|
# steps:
|
||||||
# - uses: actions/checkout@v3
|
# - uses: actions/checkout@v3
|
||||||
# - name: Install dependencies from monorepo level
|
# - name: Install dependencies from monorepo level
|
||||||
# run: cd ../../ && yarn
|
# run: cd ../../ && yarn
|
||||||
# - name: Build rescript codebase in squiggle-lang
|
# - name: Build rescript codebase in squiggle-lang
|
||||||
# run: cd ../squiggle-lang && yarn build
|
# run: cd ../squiggle-lang && yarn build
|
||||||
# - name: Run webpack
|
# - name: Run webpack
|
||||||
# run: yarn bundle
|
# run: yarn bundle
|
||||||
# - name: Build storybook
|
# - name: Build storybook
|
||||||
# run: yarn build
|
# run: yarn build
|
||||||
|
|
||||||
# website-lint:
|
# website-lint:
|
||||||
# name: Website lint
|
# name: Website lint
|
||||||
# runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
# needs: pre_check
|
# needs: pre_check
|
||||||
# if: ${{ needs.pre_check.outputs.should_skip_website != 'true' }}
|
# if: ${{ needs.pre_check.outputs.should_skip_website != 'true' }}
|
||||||
# defaults:
|
# defaults:
|
||||||
# run:
|
# run:
|
||||||
# shell: bash
|
# shell: bash
|
||||||
# working-directory: packages/website
|
# working-directory: packages/website
|
||||||
# steps:
|
# steps:
|
||||||
# - uses: actions/checkout@v3
|
# - uses: actions/checkout@v3
|
||||||
# - name: Check javascript, typescript, and markdown lint
|
# - name: Check javascript, typescript, and markdown lint
|
||||||
# uses: creyD/prettier_action@v4.2
|
# uses: creyD/prettier_action@v4.2
|
||||||
# with:
|
# with:
|
||||||
# dry: true
|
# dry: true
|
||||||
# prettier_options: --check packages/website
|
# prettier_options: --check packages/website
|
||||||
#
|
#
|
||||||
# website-build:
|
# website-build:
|
||||||
# name: Website build
|
# name: Website build
|
||||||
# runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
# needs: pre_check
|
# needs: pre_check
|
||||||
# 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') }}
|
# 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:
|
# defaults:
|
||||||
# run:
|
# run:
|
||||||
# shell: bash
|
# shell: bash
|
||||||
# working-directory: packages/website
|
# working-directory: packages/website
|
||||||
# steps:
|
# steps:
|
||||||
# - uses: actions/checkout@v3
|
# - uses: actions/checkout@v3
|
||||||
# - name: Install dependencies from monorepo level
|
# - name: Install dependencies from monorepo level
|
||||||
# run: cd ../../ && yarn
|
# run: cd ../../ && yarn
|
||||||
# - name: Build rescript in squiggle-lang
|
# - name: Build rescript in squiggle-lang
|
||||||
# run: cd ../squiggle-lang && yarn build
|
# run: cd ../squiggle-lang && yarn build
|
||||||
# - name: Build components
|
# - name: Build components
|
||||||
# run: cd ../components && yarn build
|
# run: cd ../components && yarn build
|
||||||
# - name: Build website assets
|
# - name: Build website assets
|
||||||
# run: yarn build
|
# run: yarn build
|
||||||
#
|
#
|
||||||
# vscode-ext-lint:
|
# vscode-ext-lint:
|
||||||
# name: VS Code extension lint
|
# name: VS Code extension lint
|
||||||
# runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
# needs: pre_check
|
# needs: pre_check
|
||||||
# if: ${{ needs.pre_check.outputs.should_skip_vscodeext != 'true' }}
|
# if: ${{ needs.pre_check.outputs.should_skip_vscodeext != 'true' }}
|
||||||
# defaults:
|
# defaults:
|
||||||
# run:
|
# run:
|
||||||
# shell: bash
|
# shell: bash
|
||||||
# working-directory: packages/vscode-ext
|
# working-directory: packages/vscode-ext
|
||||||
# steps:
|
# steps:
|
||||||
# - uses: actions/checkout@v3
|
# - uses: actions/checkout@v3
|
||||||
# - name: Check javascript, typescript, and markdown lint
|
# - name: Check javascript, typescript, and markdown lint
|
||||||
# uses: creyD/prettier_action@v4.2
|
# uses: creyD/prettier_action@v4.2
|
||||||
# with:
|
# with:
|
||||||
# dry: true
|
# dry: true
|
||||||
# prettier_options: --check packages/vscode-ext
|
# prettier_options: --check packages/vscode-ext
|
||||||
|
|
||||||
vscode-ext-build:
|
vscode-ext-build:
|
||||||
name: VS Code extension build
|
name: VS Code extension build
|
||||||
|
@ -204,7 +204,6 @@ jobs:
|
||||||
run: cd ../../ && yarn
|
run: cd ../../ && yarn
|
||||||
- name: Build
|
- name: Build
|
||||||
run: yarn compile
|
run: yarn compile
|
||||||
|
|
||||||
# cli-lint:
|
# cli-lint:
|
||||||
# name: CLI lint
|
# name: CLI lint
|
||||||
# runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
|
|
|
@ -14,7 +14,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
extensions: [".tsx", ".ts", ".js"],
|
extensions: [".tsx", ".ts", ".js"],
|
||||||
fallback: { "buffer": [ "@stdlib/buffer" ] }
|
fallback: { buffer: ["@stdlib/buffer"] },
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
filename: "bundle.js",
|
filename: "bundle.js",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user