Skip to content

feat: add event_param6 to SAI editor (#2441) #1

feat: add event_param6 to SAI editor (#2441)

feat: add event_param6 to SAI editor (#2441) #1

Workflow file for this run

name: main
on:
push:
branches:
- 'master'
paths-ignore:
- "**/*.md"
pull_request:
paths-ignore:
- "**/*.md"
jobs:
build:
strategy:
fail-fast: false
matrix:
node-version: [18]
os: [windows-2019]
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }}-node-${{ matrix.node-version }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v3
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Unit and Integration tests
uses: nick-invision/retry@v2
with:
max_attempts: 3
command: npm run test-ci
timeout_minutes: 20
- name: Build
run: npm run build:prod