Skip to content

Perform PR build test #120

Perform PR build test

Perform PR build test #120

Workflow file for this run

---
name: 'Test: Default'
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Cloning repository
uses: actions/checkout@v4
- name: Setting up Node.js
uses: actions/setup-node@v4
with:
node-version: 16
cache: npm
- name: Installing Node.js packages
run: npm ci
- name: Running tests
run: |
npx gulp updateTestResources
npx gulp lintNode
npx gulp lintYaml
npm run test:platform
npm run test:playground