3.39.0 #153
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: | |
release: | |
types: [created, edited] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install eslint | |
run: | | |
npm install -g eslint@8.52.0 eslint-plugin-jsdoc | |
- name: Run lint | |
run: | | |
make lint | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up GNOME Build Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y gnome-shell-extensions | |
- name: Build GNOME Extension | |
run: | | |
make build | |
mkdir ext | |
unzip github-actions@arononak.github.io.shell-extension.zip -d ./ext | |
rm github-actions@arononak.github.io.shell-extension.zip | |
- name: Upload Extension | |
uses: actions/upload-artifact@v2 | |
with: | |
name: github-actions@arononak.github.io.shell-extension | |
path: ext/ |