Skip to content

DFE-42: Enable context isolation #109

DFE-42: Enable context isolation

DFE-42: Enable context isolation #109

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install mkdirp@latest
npm install --only=dev
npm run travis-build
env:
CI: true
DONT_INSTALL_ELECTRON: 1