Fixes to GNOME Shell 45 support from code review 49534 #42
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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: Install | |
run: | | |
make install-checkstyle | |
npm install coveralls-next | |
- name: Checkstyle | |
run: | | |
make checkstyle | |
- name: Tests | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
make test-coverage | |
./node_modules/coveralls-next/bin/coveralls.js < coverage/lcov.info |