Bump rollup from 3.29.4 to 3.29.5 in /web #564
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
on: [push, pull_request] | |
name: Check web code | |
# If changing any of the commands, make the same changes to pre-push-check.sh! | |
jobs: | |
build-and-test: | |
name: Build and test web code (Node.js ${{ matrix.node-version }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ["lts/*", "*"] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2.5.0 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
working-directory: ./web | |
- run: npm run build | |
working-directory: ./web | |
check-format: | |
name: Check formatting of web code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2.5.0 | |
with: | |
node-version: "*" | |
- run: npm ci | |
working-directory: ./web | |
# npx --no-install uses the prettier version from package.json/package-lock.json | |
- run: npx --no-install prettier --check . | |
working-directory: ./web |