English translation of all texts, set english as default for FOSDEM #435
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: Check code formatting, run unit tests, etc | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install javascript modules | |
run: npm install | |
- name: Check code formatting | |
run: npm run check-pretty | |
- name: Run tests | |
run: npm run test |