chore(deps-dev): bump eslint-config-prettier from 8.8.0 to 8.9.0 #2073
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: Build | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Change diff | |
run: git --no-pager show -m "$GITHUB_SHA" --color | |
- name: Build | |
shell: bash | |
run: | | |
npm --version | |
npm ci | |
pushd plugins/desktop && npm ci; popd | |
npm run lint | |
npm run build |