Skip to content

BREAKING CHANGE: esm-only #329

BREAKING CHANGE: esm-only

BREAKING CHANGE: esm-only #329

Workflow file for this run

name: 'Pull Request'
on: ['pull_request']
concurrency:
group: pr-common-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
linters:
runs-on: ubuntu-latest
name: Run linters
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setting up the repository environment
uses: ./.github/actions/setup
- name: Build packages
run: yarn run build
- name: Run lint:ci command
run: yarn run lint:ci
test:
runs-on: ubuntu-latest
name: Run unit tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setting up the repository environment
uses: ./.github/actions/setup
- name: Build packages
run: yarn run build
- name: Run tests for the specified workspace
run: yarn run test:ci