Skip to content

Commit

Permalink
react front-end
Browse files Browse the repository at this point in the history
  • Loading branch information
nikoladavitkovski committed Sep 5, 2022
2 parents 6b8b1fb + 364de37 commit 36eb2e5
Show file tree
Hide file tree
Showing 13 changed files with 9,580 additions and 779 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,16 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
<<<<<<< HEAD
- run: npm --version
=======
<<<<<<< HEAD
- run: npm --version
=======
- name: npm 7
run: npm i -g npm@7
>>>>>>> upstream/fix-ci
>>>>>>> 364de37ca2f0a20a802c02caf4798e3f78487f31
- run: npm ci --ignore-scripts
- run: npm test

Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: ShellCheck CI

on: [push]

jobs:
shellcheck:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -e SC1090
with:
ignore: .husky
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ node_modules
husky-*.tgz
tsconfig.tsbuildinfo
*.log

# We copy /README.md to docs/ when we serve the docs site
docs/README.md
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
}
]
}
Loading

0 comments on commit 36eb2e5

Please sign in to comment.