This commit is contained in:
Lucas Dower 2022-03-04 21:57:01 +00:00
commit c4a6f1d79f
2 changed files with 4 additions and 2 deletions

View File

@ -7,5 +7,7 @@ jobs:
- uses: actions/checkout@v2
- name: Install modules
run: npm install
- name: Build
- name: Run build
run: npm run build
- name: Run tests
run: npm test

View File

@ -12,5 +12,5 @@ export namespace AppConfig {
export const DEBUG_ENABLED = true;
export const MULTISAMPLE_COUNT = 4;
export const MULTISAMPLE_COUNT = 16;
}