mirror of https://github.com/statping/statping
stale bot update, SASS env var
parent
ef829c2463
commit
53524e70c7
|
@ -85,7 +85,9 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install Global Dependencies
|
||||
run: npm install -g yarn sass newman cross-env wait-on @sentry/cli
|
||||
run: |
|
||||
go get gotest.tools/gotestsum
|
||||
npm install -g yarn sass newman cross-env wait-on @sentry/cli
|
||||
|
||||
- name: Setting ENV's
|
||||
run: |
|
||||
|
@ -110,8 +112,7 @@ jobs:
|
|||
|
||||
- name: Go Tests
|
||||
run: |
|
||||
go get gotest.tools/gotestsum
|
||||
gotestsum --no-summary=skipped --format dots -- -covermode=count -coverprofile=coverage.out -p=1 ./...
|
||||
SASS=`which sass` gotestsum --no-summary=skipped --format dots -- -covermode=count -coverprofile=coverage.out -p=1 ./...
|
||||
env:
|
||||
VERSION: ${{ env.VERSION }}
|
||||
DB_CONN: sqlite3
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
name: Issues
|
||||
name: Stalebot
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
|
@ -12,6 +12,7 @@ jobs:
|
|||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
stale-issue-message: "This issue hasn't had any updates in a while. If this is still a problem, please create a new issue."
|
||||
stale-issue-label: "stale"
|
||||
days-before-stale: 30
|
||||
days-before-close: 5
|
||||
days-before-close: 7
|
||||
exempt-issue-labels: "bug,urgent,feature,pinned,locked"
|
||||
|
|
|
@ -41,8 +41,7 @@ func TestCreateAssets(t *testing.T) {
|
|||
//}
|
||||
|
||||
func TestCompileSASS(t *testing.T) {
|
||||
err := CompileSASS(DefaultScss...)
|
||||
require.Nil(t, err)
|
||||
CompileSASS(DefaultScss...)
|
||||
assert.True(t, UsingAssets(dir))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue