diff options
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8dbc534..408ccf7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,9 +23,9 @@ jobs: with: filters: | ts: - - '*.ts' - - '*.tsx' - - '*.json' + - '**.ts' + - '**.tsx' + - '**.json' lint-test-build: name: '[ci|lint-test-build]' runs-on: 'ubuntu-latest' @@ -47,7 +47,8 @@ jobs: git config --global url."https://github.com/".insteadOf ssh://[email protected]/ git config --global url."https://".insteadOf git:// git config --global url."https://".insteadOf ssh:// - yarn - yarn build + npm install + npm run build + npm run export ... # End of ci.yml |