Skip to content

Merge pull request #2732 from ghayman/window.WAPI.waitNewAcknowledgem… #3148

Merge pull request #2732 from ghayman/window.WAPI.waitNewAcknowledgem…

Merge pull request #2732 from ghayman/window.WAPI.waitNewAcknowledgem… #3148

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '16.x'
- name: Cache npm dependencies
id: npm-cache
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Build source code
run: npm run build