Skip to content

There are no more examples folder, they have been moved to the docs #371

There are no more examples folder, they have been moved to the docs

There are no more examples folder, they have been moved to the docs #371

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn install --immutable
- name: Build packages
run: yarn build
- name: Run tests
run: yarn test