ci.yml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. name: CI
  2. on:
  3. pull_request:
  4. push:
  5. branches:
  6. - main
  7. - 'releases/*'
  8. permissions:
  9. contents: read
  10. env:
  11. CI: true
  12. TZ: Asia/Shanghai
  13. jobs:
  14. test:
  15. name: Test
  16. runs-on: ${{ matrix.os }}
  17. strategy:
  18. matrix:
  19. os:
  20. - ubuntu-latest
  21. # - macos-latest
  22. - windows-latest
  23. timeout-minutes: 20
  24. steps:
  25. - name: Checkout code
  26. uses: actions/checkout@v4
  27. with:
  28. fetch-depth: 0
  29. - name: Install pnpm
  30. uses: pnpm/action-setup@v4
  31. with:
  32. run_install: false
  33. - name: Setup Node
  34. uses: ./.github/actions/setup-node
  35. # - name: Check Git version
  36. # run: git --version
  37. # - name: Setup mock Git user
  38. # run: git config --global user.email "you@example.com" && git config --global user.name "Your Name"
  39. - name: Vitest tests
  40. run: pnpm run test:unit
  41. # - name: Upload coverage
  42. # uses: codecov/codecov-action@v4
  43. # with:
  44. # token: ${{ secrets.CODECOV_TOKEN }}
  45. lint:
  46. name: Lint
  47. runs-on: ${{ matrix.os }}
  48. strategy:
  49. matrix:
  50. os:
  51. - ubuntu-latest
  52. # - macos-latest
  53. - windows-latest
  54. steps:
  55. - name: Checkout code
  56. uses: actions/checkout@v4
  57. with:
  58. fetch-depth: 0
  59. - name: Setup Node
  60. uses: ./.github/actions/setup-node
  61. - name: Lint
  62. run: pnpm run lint
  63. check:
  64. name: Check
  65. runs-on: ${{ matrix.os }}
  66. timeout-minutes: 20
  67. strategy:
  68. matrix:
  69. os:
  70. - ubuntu-latest
  71. # - macos-latest
  72. - windows-latest
  73. steps:
  74. - name: Checkout code
  75. uses: actions/checkout@v4
  76. with:
  77. fetch-depth: 0
  78. - name: Setup Node
  79. uses: ./.github/actions/setup-node
  80. - name: Typecheck
  81. run: pnpm check:type
  82. # From https://github.com/rhysd/actionlint/blob/main/docs/usage.md#use-actionlint-on-github-actions
  83. - name: Check workflow files
  84. if: runner.os == 'Linux'
  85. run: |
  86. bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
  87. ./actionlint -color -shellcheck=""
  88. ci-ok:
  89. name: CI OK
  90. runs-on: ubuntu-latest
  91. needs: [test, check, lint]
  92. env:
  93. FAILURE: ${{ contains(join(needs.*.result, ','), 'failure') }}
  94. steps:
  95. - name: Check for failure
  96. run: |
  97. echo $FAILURE
  98. if [ "$FAILURE" = "false" ]; then
  99. exit 0
  100. else
  101. exit 1
  102. fi