-
-
Notifications
You must be signed in to change notification settings - Fork 11
44 lines (41 loc) · 911 Bytes
/
build.yml
File metadata and controls
44 lines (41 loc) · 911 Bytes
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
---
name: Build
on:
push:
branches:
- main
paths:
- "*.js"
- "*.json"
- "*.yml"
- "packages/**"
- "!**.md"
- "!examples/**/*.js"
- "!examples/**/*.json"
- "!packages/**/__mocks__/**"
- "!packages/**/__tests__/**"
pull_request:
branches:
- main
paths:
- "*.js"
- "*.json"
- "*.yml"
- "packages/**"
- "!**.md"
- "!examples/**/*.js"
- "!examples/**/*.json"
- "!packages/**/__mocks__/**"
- "!packages/**/__tests__/**"
jobs:
build:
name: Build Artifacts
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v5
- name: Prepare Environment
uses: ./.github/shared/setup
- name: Build Artifacts
run: pnpm build