chore: fixed changelog #329
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '10.x' | |
- name: Install libscrypt | |
run: | | |
sudo apt-get install libscrypt0 | |
sudo apt-get install libscrypt-dev | |
- name: Lint JavaScript | |
run: | | |
sudo npm install -g jshint | |
jshint --exclude-path public/scripts/.jshintignore public/scripts | |
- name: Install D | |
uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: dmd-2.096.1 | |
- name: Build | |
run: dub build | |
- name: Style checks | |
run: | | |
dub fetch dscanner | |
dub run dscanner -- -S source/ | |
- name: Unit Tests | |
run: dub test |