Skip to content

chore/switch to npm #275

chore/switch to npm

chore/switch to npm #275

Workflow file for this run

name: Continuous Integration
on: [pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Install Chromium Library Dependencies
run: |
sh ./.github/workflows/chromium-lib-install.sh
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.12.1
- name: Installing project dependencies
run: |
npm ci
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm run test
- name: Build
run: |
npm run build