Add untyped control for JSON schema that is missing a type definition #133
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate Snapshots | |
on: | |
push: | |
branches: | |
- main | |
- gh-pages | |
- 'features/**' | |
pull_request: | |
branches: | |
- main | |
- gh-pages | |
- 'features/**' | |
jobs: | |
build: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
node: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Cache multiple paths | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build package files | |
run: npm run build --workspace=design-to-code --workspace=design-to-code-react | |
- name: Build test app | |
run: npm run build:app --workspace=design-to-code --workspace=design-to-code-react | |
- name: Install playwright browsers | |
run: npx playwright install | |
- name: Test design to code package | |
run: npm run test:snapshots --workspace=design-to-code | |
- name: Test design to code react package | |
run: npm run test:snapshots --workspace=design-to-code-react | |
- name: Build docs site | |
run: npm run build:gh-pages | |