Skip to content

chore: Bumping version #33

chore: Bumping version

chore: Bumping version #33

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- run: pnpm install --no-frozen-lockfile
- run: pnpm build
- run: pnpm test:coverage
- name: Codecov
uses: codecov/codecov-action@v3