Made reference filter bar sticky and added some styles #519
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 and test | |
on: | |
push: | |
paths: | |
- "template/Makefile" | |
- "Makefile" | |
- "scripts/*" | |
- "tests/*" | |
- "bin/*" | |
- "lib/*" | |
- "src/*" | |
- ".github/workflows/build.yaml" | |
branches: | |
- master | |
- devel | |
pull_request: | |
branches: | |
- master | |
- devel | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update deps | |
run: sudo apt-get update | |
- name: Install ImageMagick | |
run: sudo apt-get -y install graphicsmagick | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- run: npm ci | |
- run: make | |
- run: make lint | |
- run: make test | |
- run: make coverage | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |