Skip to content

Update partnership and sponsoring offer support : slide GCI : update … #155

Update partnership and sponsoring offer support : slide GCI : update …

Update partnership and sponsoring offer support : slide GCI : update … #155

Workflow file for this run

name: Build
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 24.x
cache: npm
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build