Skip to content

chore: release v0.7.8-beta.2 #26

chore: release v0.7.8-beta.2

chore: release v0.7.8-beta.2 #26

Workflow file for this run

name: Code quality checks
on:
workflow_dispatch:
push:
pull_request:
defaults:
run:
working-directory: .
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node_version: [18]
fail-fast: false
name: "Code quality checks on node-${{ matrix.node_version }}, ${{ matrix.os }}"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
cache: "pnpm"
- name: Set node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm
registry-url: "https://registry.npmjs.org"
- name: Install
run: pnpm install
- name: Run code quality checks and tests
run: pnpm run cq