Skip to content

Bump ejs from 3.1.9 to 3.1.10 (#686) #1811

Bump ejs from 3.1.9 to 3.1.10 (#686)

Bump ejs from 3.1.9 to 3.1.10 (#686) #1811

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
- name: Build
run: npm run electron:build
- name: Test
run: xvfb-run -a --server-args="-screen 0, 1024x600x24" npm test