Skip to content

Session management #306

Session management

Session management #306

Workflow file for this run

name: CI Pipeline
on:
pull_request:
branches: [main, development, dev]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Generate diff
run: git diff "origin/${{ github.base_ref }}" HEAD > diff.txt
- name: Upload diff artifact
uses: actions/upload-artifact@v4
with:
name: git-diff
path: diff.txt
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install and build
run: |
npm ci
npm run compile
npm run format
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}