Bump express from 4.18.2 to 4.21.1 in /webusb_site #198
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: Node.js build and lint | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 16.x, 12.x, 14.x ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install yarn | |
run: sudo npm install -g yarn | |
- name: Yarn | |
run: yarn | |
working-directory: webusb_site | |
- run: yarn build --report | |
working-directory: webusb_site | |
- run: yarn lint | |
working-directory: webusb_site | |
env: | |
CI: true |