Skip to content

WIP: Feat/versioning #1

WIP: Feat/versioning

WIP: Feat/versioning #1

Workflow file for this run

name: 'Check: unit and e2e tests'
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install pnpm
run: npm install -g pnpm
- name: Install Dependencies
run: pnpm install
- name: Build
run: npx lerna run build
- name: Test
run: npx lerna run test
- name: Deploy
run: lerna version --yes && lerna publish from-git --yes