This repository was archived by the owner on Jan 23, 2026. It is now read-only.
docs: revise README for repository migration notice #911
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - next | |
| - rc | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '20' | |
| - run: | | |
| npm clean-install | |
| npm run test:ci | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| fail-on-error: false |