Skip to content

Commit 51a694f

Browse files
authored
feat(core): GitHub Actions
* feat(core): GitHub Actions * fix(core): test workflow name * fix(core): npm installation * fix(core): npm installation * fix(core): npm installation * fix(core): npm installation * fix(core): npm installation * fix(core): lint deps * fix(core): lint deps
1 parent 6570b1a commit 51a694f

File tree

13 files changed

+521
-127
lines changed

13 files changed

+521
-127
lines changed

.eslintrc.json

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,6 @@
2020
"extends": [
2121
"@betsys-eslint/typescript"
2222
]
23-
},
24-
{
25-
"files": ["*.html"],
26-
"plugins": [
27-
"angular-template-spacing"
28-
],
29-
"extends": [
30-
"plugin:angular-template-spacing/recommended"
31-
],
32-
"rules": {}
3323
}
3424
]
3525
}

.github/workflows/lint.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: lint
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
types:
7+
- opened
8+
- reopened
9+
- synchronize
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
16+
with:
17+
node-version: '16'
18+
- run: npx -y lerna bootstrap
19+
- run: npm run build:all
20+
- run: npm run lint:all

.github/workflows/test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: test
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
types:
7+
- opened
8+
- reopened
9+
- synchronize
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
16+
with:
17+
node-version: '16'
18+
- run: npx -y lerna bootstrap
19+
- run: npm run test:all
File renamed without changes.

0 commit comments

Comments
 (0)