chore: regenerate screenshots (mic icon changed) #43
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: SCSS Lint | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install scss lint gem | |
run: sudo apt install -y ruby-dev ; sudo gem install scss_lint | |
- name: prepare source files for linting | |
run: cp -r ./src/gtk-3.20/ ./gtk320lint && sed -ie 's/%[A-Z0-9_]\+%/123456/g' ./gtk320lint/scss/_global.scss | |
- name: scss-lint | |
run: scss-lint ./gtk320lint/ |