Skip to content

update package.json #915

update package.json

update package.json #915

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "14.x"
- name: Install
run: |
npm install
npm run build --if-present
npm run lint --if-present
- name: Test
run: |
sudo apt-get install xvfb
xvfb-run --auto-servernum npm run test:ci