-
Notifications
You must be signed in to change notification settings - Fork 1
93 lines (80 loc) · 2.76 KB
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#
# Builds the packages on Linux.
#
# This runs after changes are pushed to a feature branch. It does not
# run for pushes to the main branch because that is covered by the
# `release` workflow.
#
name: Build
on:
push:
branches-ignore:
- main
jobs:
build:
# TODO: Run on Ubuntu 22 as a workaround for Puppeteer issues on ubuntu-latest (24):
# https://github.com/puppeteer/puppeteer/issues/12818
runs-on: ubuntu-22.04
steps:
- name: Check out repo
uses: actions/checkout@v4
with:
# XXX: Fetch history for all branches; we really only need the history
# for the base (main) branch in the `sim-slack` script, so this is
# inefficient but simple
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
# The pnpm caching strategy in the following steps is based on:
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Enable pnpm cache
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: pnpm-store-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
# restore-keys: |
# pnpm-store-${{ runner.os }}-
# Save the auth token so that the build can access private packages from
# the GitHub Packages registry
- name: Configure npm auth tokens
run: |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_ACCESS_TOKEN }}" > ~/.npmrc
- name: Install dependencies
run: |
pnpm install
# XXX: Workaround for Puppeteer issues
- name: Install Chromium for Puppeteer
run: |
node ./packages/docs-builder/node_modules/puppeteer/install.js
- name: Build
id: build
run: |
pnpm ci-build
# - name: Define CI_NOTIFY environment variables
# if: always()
# run: |
# if [[ "${{steps.build.outcome}}" == "success" ]]; then
# status="succeeded"
# elif [[ "${{steps.build.outcome}}" == "failure" ]]; then
# status="failed"
# else
# status="cancelled"
# fi
# echo "CI_NOTIFY_BUILD_STATUS=$status" >> $GITHUB_ENV
# - name: Notify committer on Slack
# if: always()
# env:
# SLACK_WEBHOOK: '${{ secrets.SLACK_WEBHOOK }}'
# run: |
# node ./packages/sim-scripts/scripts/sim-slack.js