Skip to content

feat: add idempotency_token special variable per resource per session #5

feat: add idempotency_token special variable per resource per session

feat: add idempotency_token special variable per resource per session #5

Workflow file for this run

name: Website CI
on:
push:
branches-ignore: [main]
paths:
- 'website/**'
- '.github/workflows/ci-website.yml'
pull_request:
branches: [main]
paths:
- 'website/**'
- '.github/workflows/ci-website.yml'
jobs:
build:
name: Yarn Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
cache-dependency-path: website/yarn.lock
- name: Install dependencies
working-directory: website
run: yarn install --frozen-lockfile
- name: Build website
working-directory: website
run: yarn build