-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (40 loc) · 897 Bytes
/
ci-dev.yml
File metadata and controls
47 lines (40 loc) · 897 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
45
46
47
# .github/workflows/ci-dev.yml
name: CI — dev 🛠️
on:
push:
branches: [dev]
pull_request:
branches: [dev]
workflow_dispatch:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
build-and-test:
name: Build & Test (Node 20) 🧪
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: true
env:
CI: true
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v4
- name: 🔧 Setup Node 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: 📦 Install, 🔎 Typecheck, 🏗️ Build, ✅ Test
run: |
set -euo pipefail
npm ci
npm run typecheck
npm run build
npm test -- --run