-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (39 loc) · 888 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Check Build Possibility
on:
pull_request:
branches: ['main']
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Test scenario tags'
required: false
type: boolean
environment:
description: 'Environment to run tests against'
type: environment
required: false
permissions:
contents: read
jobs:
build-test:
runs-on: ubuntu-24.04
env:
DISABLE_ESLINT_PLUGIN: true
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '21.2.0'
- name: Install dependencies
run: npm install
- name: Try build
run: npm run build