diff options
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 408ccf7..6560449 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,7 @@ on: branches: - '**' - '!main' + workflow_dispatch: defaults: run: shell: 'bash' @@ -36,6 +37,10 @@ jobs: uses: 'actions/checkout@v2' with: repository: '${{ github.repository }}' + - name: '[setup node]' + uses: 'actions/setup-node@v2' + with: + node-version: '16' - name: '[lint]' run: | echo TBA some linting @@ -47,8 +52,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:// - npm install - npm run build - npm run export + yarn install + yarn run build + yarn run export ... # End of ci.yml |