|
| 1 | +name: CI |
| 2 | + |
| 3 | +on: |
| 4 | + pull_request: |
| 5 | + branches: [ main, prod-beta, prod-stable, stage-beta, stage-stable ] |
| 6 | + push: |
| 7 | + branches: [ main, prod-beta, prod-stable, stage-beta, stage-stable ] |
| 8 | + |
| 9 | +env: |
| 10 | + BRANCH: ${{ github.base_ref }} |
| 11 | + NODEJS_VERSION: '18' |
| 12 | + |
| 13 | +jobs: |
| 14 | + build: |
| 15 | + # This job is run for PRs only, as a sanity check, to confirm ci.ext.devshift.net is working properly |
| 16 | + if: ${{ github.event_name == 'pull_request' }} |
| 17 | + name: Build |
| 18 | + runs-on: ubuntu-latest |
| 19 | + |
| 20 | + steps: |
| 21 | + - name: Checkout code |
| 22 | + uses: actions/checkout@v4 |
| 23 | + |
| 24 | + - name: Setup Node.js |
| 25 | + uses: actions/setup-node@v4 |
| 26 | + with: |
| 27 | + node-version: ${{ env.NODEJS_VERSION }} |
| 28 | + |
| 29 | + - name: Cache node modules |
| 30 | + id: cache-npm |
| 31 | + uses: actions/cache@v4 |
| 32 | + env: |
| 33 | + cache-name: cache-node-modules |
| 34 | + with: |
| 35 | + # npm cache files are stored in `~/.npm` on Linux/macOS |
| 36 | + path: ~/.npm |
| 37 | + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} |
| 38 | + restore-keys: | |
| 39 | + ${{ runner.os }}-build-${{ env.cache-name }}- |
| 40 | + ${{ runner.os }}-build- |
| 41 | + ${{ runner.os }}- |
| 42 | +
|
| 43 | + - name: Install dependencies |
| 44 | + run: npm install |
| 45 | + |
| 46 | + - name: Build |
| 47 | + run: npm run build |
| 48 | + |
| 49 | + - name: Lint |
| 50 | + run: npm run lint |
| 51 | + |
| 52 | + units: |
| 53 | + name: Units |
| 54 | + runs-on: ubuntu-latest |
| 55 | + |
| 56 | + steps: |
| 57 | + - name: Checkout code |
| 58 | + uses: actions/checkout@v4 |
| 59 | + |
| 60 | + - name: Setup Node.js |
| 61 | + uses: actions/setup-node@v4 |
| 62 | + with: |
| 63 | + node-version: ${{ env.NODEJS_VERSION }} |
| 64 | + |
| 65 | + - name: Cache node modules |
| 66 | + id: cache-npm |
| 67 | + uses: actions/cache@v4 |
| 68 | + env: |
| 69 | + cache-name: cache-node-modules |
| 70 | + with: |
| 71 | + # npm cache files are stored in `~/.npm` on Linux/macOS |
| 72 | + path: ~/.npm |
| 73 | + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} |
| 74 | + restore-keys: | |
| 75 | + ${{ runner.os }}-build-${{ env.cache-name }}- |
| 76 | + ${{ runner.os }}-build- |
| 77 | + ${{ runner.os }}- |
| 78 | +
|
| 79 | + - name: Install dependencies |
| 80 | + run: npm install |
| 81 | + |
| 82 | + - name: Test |
| 83 | + id: test_run |
| 84 | + run: npm test -- --collect-coverage --max-workers=4 |
| 85 | + |
| 86 | + - uses: actions/upload-artifact@v4 |
| 87 | + if: ${{ steps.test_run.outcome == 'success' }} |
| 88 | + name: Save coverage report |
| 89 | + with: |
| 90 | + name: coverage_report |
| 91 | + path: coverage/ |
| 92 | + retention-days: 10 |
| 93 | + |
| 94 | + coverage: |
| 95 | + name: Coverage |
| 96 | + needs: [units] |
| 97 | + runs-on: ubuntu-latest |
| 98 | + |
| 99 | + steps: |
| 100 | + - name: Checkout code |
| 101 | + uses: actions/checkout@v4 |
| 102 | + |
| 103 | + - name: Download coverage report |
| 104 | + uses: actions/download-artifact@v4 |
| 105 | + with: |
| 106 | + name: coverage_report |
| 107 | + path: coverage |
| 108 | + |
| 109 | + - name: Upload coverage report |
| 110 | + if: ${{ success() }} |
| 111 | + uses: codecov/codecov-action@v4.2.0 |
| 112 | + env: |
| 113 | + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
| 114 | + with: |
| 115 | + directory: coverage |
| 116 | + plugin: pycoverage # Only run one plugin so that all do not run. There is no way to disable plugins entirely. |
0 commit comments