Skip to content

feat: create relationships #33

feat: create relationships

feat: create relationships #33

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
test:
name: Publish
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write # needed for provenance data generation
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
shell: bash
- name: Print Environment Info
run: pnpx nx report
shell: bash
- name: Publish packages
run: |
pnpx nx format:check
pnpx nx run web:build:production
shell: bash