|
| 1 | +name: CI |
| 2 | +on: |
| 3 | + pull_request: |
| 4 | + push: |
| 5 | + branches: |
| 6 | + - master |
| 7 | +concurrency: |
| 8 | + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} |
| 9 | + cancel-in-progress: true |
| 10 | + |
| 11 | +env: |
| 12 | + RUNNER_NODE_VERSION: 22 |
| 13 | +jobs: |
| 14 | + install_deps: |
| 15 | + runs-on: ubuntu-latest |
| 16 | + steps: |
| 17 | + - uses: actions/checkout@v4 |
| 18 | + - name: Use Node.js ${{ env.RUNNER_NODE_VERSION }} |
| 19 | + uses: actions/setup-node@v4 |
| 20 | + with: |
| 21 | + node-version: ${{ env.RUNNER_NODE_VERSION }} |
| 22 | + - name: cache dependencies |
| 23 | + uses: actions/cache@v4 |
| 24 | + id: cache-dependencies |
| 25 | + with: |
| 26 | + path: "node_modules" |
| 27 | + key: depends-node${{ env.RUNNER_NODE_VERSION }}-${{ hashFiles('package-lock.json') }} |
| 28 | + - name: install dependencies |
| 29 | + if: steps.cache-dependencies.outputs.cache-hit != 'true' |
| 30 | + run: npm i |
| 31 | + |
| 32 | + typecheck: |
| 33 | + runs-on: ubuntu-latest |
| 34 | + needs: install_deps |
| 35 | + steps: |
| 36 | + - uses: actions/checkout@v4 |
| 37 | + - name: Use Node.js ${{ env.RUNNER_NODE_VERSION }} |
| 38 | + uses: actions/setup-node@v4 |
| 39 | + with: |
| 40 | + node-version: ${{ env.RUNNER_NODE_VERSION }} |
| 41 | + - name: restore dependencies cache |
| 42 | + uses: actions/cache/restore@v4 |
| 43 | + with: |
| 44 | + path: "node_modules" |
| 45 | + key: depends-node${{ env.RUNNER_NODE_VERSION }}-${{ hashFiles('package-lock.json') }} |
| 46 | + - name: typecheck |
| 47 | + run: npm run typecheck |
| 48 | + |
| 49 | + lint: |
| 50 | + runs-on: ubuntu-latest |
| 51 | + needs: install_deps |
| 52 | + steps: |
| 53 | + - uses: actions/checkout@v4 |
| 54 | + - name: Use Node.js ${{ env.RUNNER_NODE_VERSION }} |
| 55 | + uses: actions/setup-node@v4 |
| 56 | + with: |
| 57 | + node-version: ${{ env.RUNNER_NODE_VERSION }} |
| 58 | + - name: restore dependencies cache |
| 59 | + uses: actions/cache/restore@v4 |
| 60 | + with: |
| 61 | + path: "node_modules" |
| 62 | + key: depends-node${{ env.RUNNER_NODE_VERSION }}-${{ hashFiles('package-lock.json') }} |
| 63 | + - name: lint |
| 64 | + run: npm run lint |
| 65 | + |
| 66 | + build: |
| 67 | + runs-on: ubuntu-latest |
| 68 | + needs: install_deps |
| 69 | + steps: |
| 70 | + - uses: actions/checkout@v4 |
| 71 | + - name: Use Node.js ${{ env.RUNNER_NODE_VERSION }} |
| 72 | + uses: actions/setup-node@v4 |
| 73 | + with: |
| 74 | + node-version: ${{ env.RUNNER_NODE_VERSION }} |
| 75 | + - name: restore dependencies cache |
| 76 | + uses: actions/cache/restore@v4 |
| 77 | + with: |
| 78 | + path: "node_modules" |
| 79 | + key: depends-node${{ env.RUNNER_NODE_VERSION }}-${{ hashFiles('package-lock.json') }} |
| 80 | + - name: build |
| 81 | + run: npm run build |
| 82 | + |
| 83 | + test: |
| 84 | + runs-on: ubuntu-latest |
| 85 | + needs: install_deps |
| 86 | + strategy: |
| 87 | + matrix: |
| 88 | + node-version: [18, 20, 22] |
| 89 | + steps: |
| 90 | + - uses: actions/checkout@v4 |
| 91 | + - name: Use Node.js ${{ matrix.node-version }} |
| 92 | + uses: actions/setup-node@v4 |
| 93 | + with: |
| 94 | + node-version: ${{ matrix.node-version }} |
| 95 | + - name: restore dependencies cache |
| 96 | + uses: actions/cache/restore@v4 |
| 97 | + with: |
| 98 | + path: "node_modules" |
| 99 | + key: depends-node${{ env.RUNNER_NODE_VERSION }}-${{ hashFiles('package-lock.json') }} |
| 100 | + - name: test |
| 101 | + run: npm run test |
| 102 | + test_result: |
| 103 | + runs-on: ubuntu-latest |
| 104 | + needs: test |
| 105 | + if: ${{ always() }} |
| 106 | + steps: |
| 107 | + - run: exit 1 |
| 108 | + if: ${{ needs.test.result != 'success' }} |
0 commit comments