merging project-skeleton #6

Merged
Sarsoo merged 6 commits from project-skeleton into master 2021-10-23 11:08:20 +01:00
3 changed files with 24 additions and 22 deletions
Showing only changes of commit 11a48ea4a9 - Show all commits

View File

@ -24,26 +24,26 @@ jobs:
- name: Test - name: Test
run: dotnet test --no-restore --verbosity normal run: dotnet test --no-restore --verbosity normal
build-Js: # build-Js:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
strategy: # strategy:
fail-fast: false # fail-fast: false
matrix: # matrix:
node: [16] # node: [16]
steps: # steps:
- uses: actions/checkout@v2 # - uses: actions/checkout@v2
- name: Install Node ${{ matrix.node }} # - name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v2 # uses: actions/setup-node@v2
with: # with:
node-version: ${{ matrix.node }} # node-version: ${{ matrix.node }}
- name: Install Node Packages # - name: Install Node Packages
working-directory: ./Selector.Web/Frontend # working-directory: ./Selector.Web
run: npm ci # run: npm ci
- name: Compile Front-end # - name: Compile Front-end
working-directory: ./Selector.Web/Frontend # working-directory: ./Selector.Web
run: npm run build --if-present # run: npm run build --if-present

View File

@ -4,7 +4,8 @@
"description": "", "description": "",
"main": "index.ts", "main": "index.ts",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -1,6 +1,7 @@
namespace Selector.Web {awdawd namespace Selector.Web {
class Watcher {ada class Watcher {
static example: string = "string"; static example: string = "string";
}awdw static ex2: string = "awdwad";
}
} }