Skip to content

Bump semver from 7.3.7 to 7.5.4 in /examples/node-cli #96

Bump semver from 7.3.7 to 7.5.4 in /examples/node-cli

Bump semver from 7.3.7 to 7.5.4 in /examples/node-cli #96

Workflow file for this run

name: Continuous integration
on: pull_request
jobs:
ci:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache the node_modules dir
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('package-lock.json') }}
- name: Install
run: |
sudo apt-get install clang-format ninja-build
npm install
- name: Build library
run: make lib
- name: Build examples
run: make examples
- name: Typecheck
run: make typecheck
- name: Check formatting
run: make checkformat
- name: Run tests
run: make test