Merge pull request #354 from adangel:cleanup-audio-mixer #102
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 CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- name: Install gettext, intltool and jq | |
run: | | |
sudo apt-get update | |
sudo apt-get install gettext intltool jq | |
- run: npm ci | |
- run: npm run lint | |
- run: make zip-file | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: EasyScreenCast | |
path: EasyScreenCast_*.zip |