-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (30 loc) · 892 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: CI
on:
pull_request:
push:
jobs:
sbt-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sbt "scripted sbt-typescript/angular2"
- run: sbt "scripted sbt-typescript/atTypes"
- run: sbt "scripted sbt-typescript/es6-es5"
- run: sbt "scripted sbt-typescript/ignoreCanNotFindModule"
- run: sbt "scripted sbt-typescript/inlinesourcemap"
# - run: sbt "scripted sbt-typescript/outfile"
- run: sbt "scripted sbt-typescript/sourcemap"
# - run: sbt "scripted sbt-typescript/stage"
# - run: sbt "scripted sbt-typescript/testassets"
scalafmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sbt scalafmtCheckAll
typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm i
- run: npx tsc
- run: npm run lint