Upload to oracular #678
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: Make | |
'on': | |
pull_request: | |
push: | |
branches: | |
- master | |
- ubuntu-dock | |
- make_ci | |
jobs: | |
make: | |
name: Make | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the codebase. | |
uses: actions/checkout@v4 | |
- name: Install dependencies. | |
run: sudo apt-get install -y sassc gettext | |
- name: Make | |
run: make | |
- name: Install modules | |
run: sudo npm install eslint -g | |
- name: Make Check | |
run: make check | |
- name: Make Install | |
run: make install |