Bump electron-updater from 4.3.5 to 6.3.0 #1498
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: Linting | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v1 | |
- name: Install Node.js, NPM and Yarn | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install APT dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install build-essential git -y | |
sudo apt-get install libudev-dev -y | |
sudo apt-get install libusb-1.0-0-dev -y | |
- name: Install and Lint | |
run: | | |
npm install | |
npm run lint |