Bump sharp from 0.30.5 to 0.32.6 in /examples/node-cli #106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |