This repository has been archived by the owner on Feb 9, 2024. It is now read-only.
Update README.md #23
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: CI-linux | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
cache: 'npm' | |
- name: Update npm | |
run: npm install --global npm@latest | |
- name: Install Global Dependencies | |
run: npm install yarn electron webpack typescript -g | |
- name: Install Dependencies & Build Native Files | |
run: yarn install | |
- name: Build Typescript files | |
run: yarn run build | |
- name: Run ESLint | |
run: yarn run lint |