Skip to content

Update release-v1 workflow #339

Update release-v1 workflow

Update release-v1 workflow #339

Workflow file for this run

on:
push:
branches: [master, v1]
pull_request:
name: CI
jobs:
build:
name: build library
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
# Setup environment
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
# Install dependencies
- name: Install dependencies
run: npm install
# Build
- name: Prepare
run: npm run generate-prisma
- name: Build
run: npm run build
# Light tests (docker tests not supported yet)
- name: Light tests
run: npm run no-docker-examples