An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

github config and vscode settings

+56 -3
+6
.github/config.yml
··· 1 + requiredHeaders: 2 + - Prerequisites 3 + - Expected Behavior 4 + - Current Behavior 5 + - Possible Solution 6 + - Your Environment
+36
.github/workflows/test.yml
··· 1 + name: Test 2 + 3 + on: push 4 + 5 + jobs: 6 + release: 7 + runs-on: ${{ matrix.os }} 8 + 9 + strategy: 10 + matrix: 11 + os: [macos-10.14, windows-2019, ubuntu-18.04] 12 + 13 + steps: 14 + - name: Check out Git repository 15 + uses: actions/checkout@v1 16 + 17 + - name: Install Node.js, NPM and Yarn 18 + uses: actions/setup-node@v1 19 + with: 20 + node-version: 13 21 + 22 + - name: yarn install 23 + run: | 24 + yarn install 25 + 26 + - name: yarn test 27 + env: 28 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 29 + run: | 30 + yarn package-ci 31 + yarn lint 32 + yarn tsc 33 + 34 + # Failing because virtual framebuffer not installed 35 + # yarn build-e2e 36 + # yarn test-e2e
+14 -3
.vscode/settings.json
··· 1 1 { 2 + "files.associations": { 3 + ".babelrc": "jsonc", 4 + ".eslintrc": "jsonc", 5 + ".prettierrc": "jsonc", 6 + ".stylelintrc": "json", 7 + ".dockerignore": "ignore", 8 + ".eslintignore": "ignore" 9 + }, 10 + 2 11 "javascript.validate.enable": false, 3 - "flow.useNPMPackagedFlow": true, 12 + "javascript.format.enable": false, 13 + "typescript.format.enable": false, 14 + 4 15 "search.exclude": { 5 16 ".git": true, 6 17 ".eslintcache": true, ··· 9 20 "app/main.prod.js.map": true, 10 21 "bower_components": true, 11 22 "dll": true, 12 - "flow-typed": true, 13 23 "release": true, 14 24 "node_modules": true, 15 25 "npm-debug.log.*": true, 16 26 "test/**/__snapshots__": true, 17 - "yarn.lock": true 27 + "yarn.lock": true, 28 + "*.{css,sass,scss}.d.ts": true 18 29 } 19 30 }