2022-08-26 01:27:04 -07:00
|
|
|
name: Test Master
|
2019-12-24 16:25:44 -08:00
|
|
|
|
2022-08-26 01:27:04 -07:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-12-24 16:25:44 -08:00
|
|
|
|
|
|
|
jobs:
|
2023-08-02 08:38:35 -07:00
|
|
|
install-and-build:
|
2019-12-24 16:25:44 -08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2024-05-24 03:32:50 -07:00
|
|
|
timeout-minutes: 10
|
2019-12-24 16:25:44 -08:00
|
|
|
|
|
|
|
steps:
|
2024-01-26 02:26:30 -08:00
|
|
|
- uses: actions/checkout@v4.1.1
|
2022-09-21 01:50:15 -07:00
|
|
|
|
2024-02-02 00:47:58 -08:00
|
|
|
- run: corepack enable
|
2024-05-24 03:32:50 -07:00
|
|
|
- uses: actions/setup-node@v4.0.2
|
2022-08-19 06:34:02 -07:00
|
|
|
with:
|
2024-05-24 03:32:50 -07:00
|
|
|
node-version: 20.x
|
2023-08-02 08:38:35 -07:00
|
|
|
cache: pnpm
|
2022-09-21 01:50:15 -07:00
|
|
|
|
2022-11-09 08:32:05 -08:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install --frozen-lockfile
|
2022-09-21 01:50:15 -07:00
|
|
|
|
2024-07-05 08:43:52 -07:00
|
|
|
- name: Setup build cache
|
|
|
|
uses: rharkor/caching-for-turbo@v1.5
|
|
|
|
|
2022-09-21 01:50:15 -07:00
|
|
|
- name: Build
|
2022-11-09 08:32:05 -08:00
|
|
|
run: pnpm build
|
2022-09-21 01:50:15 -07:00
|
|
|
|
2023-08-02 08:38:35 -07:00
|
|
|
- name: Cache build artifacts
|
2024-01-26 02:26:30 -08:00
|
|
|
uses: actions/cache/save@v4.0.0
|
2023-08-02 08:38:35 -07:00
|
|
|
with:
|
2023-08-22 02:21:16 -07:00
|
|
|
path: ./packages/**/dist
|
2024-05-24 03:32:50 -07:00
|
|
|
key: ${{ github.sha }}-base:build
|
2023-08-02 08:38:35 -07:00
|
|
|
|
|
|
|
unit-test:
|
|
|
|
name: Unit tests
|
2023-09-13 06:24:02 -07:00
|
|
|
uses: ./.github/workflows/units-tests-reusable.yml
|
2023-08-02 08:38:35 -07:00
|
|
|
needs: install-and-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-07-19 06:36:48 -07:00
|
|
|
node-version: [18.x, 20.x, 22.4]
|
2023-09-13 06:24:02 -07:00
|
|
|
with:
|
|
|
|
ref: ${{ inputs.branch }}
|
|
|
|
nodeVersion: ${{ matrix.node-version }}
|
2024-05-24 03:32:50 -07:00
|
|
|
cacheKey: ${{ github.sha }}-base:build
|
2024-07-03 01:37:04 -07:00
|
|
|
collectCoverage: ${{ matrix.node-version == '20.x' }}
|
|
|
|
secrets:
|
|
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
2023-03-10 07:53:05 -08:00
|
|
|
|
2023-08-02 08:38:35 -07:00
|
|
|
lint:
|
2024-06-13 04:10:51 -07:00
|
|
|
name: Lint
|
|
|
|
uses: ./.github/workflows/linting-reusable.yml
|
2023-08-02 08:38:35 -07:00
|
|
|
needs: install-and-build
|
2024-06-13 04:10:51 -07:00
|
|
|
with:
|
|
|
|
ref: ${{ inputs.branch }}
|
|
|
|
cacheKey: ${{ github.sha }}-base:build
|
2022-11-17 09:52:03 -08:00
|
|
|
|
2023-08-02 08:38:35 -07:00
|
|
|
notify-on-failure:
|
|
|
|
name: Notify Slack on failure
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [unit-test, lint]
|
|
|
|
steps:
|
2022-11-17 09:52:03 -08:00
|
|
|
- name: Notify Slack on failure
|
|
|
|
uses: act10ns/slack@v2.0.0
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
2023-11-13 04:35:21 -08:00
|
|
|
channel: '#alerts-build'
|
2022-11-17 09:52:03 -08:00
|
|
|
webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }}
|
2022-12-20 05:13:24 -08:00
|
|
|
message: Master branch (build or test or lint) failed (${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
|