Skip to content

[BUGFIX] Update the columns store with the new name (#50) #13

[BUGFIX] Update the columns store with the new name (#50)

[BUGFIX] Update the columns store with the new name (#50) #13

Workflow file for this run

name: Run tests and build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Test
run: pnpm test
continue-on-error: true
- name: Build
run: pnpm build