generated from pulseflow/ts-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (43 loc) · 1.08 KB
/
ci.yml
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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
paths-ignore:
- '.vscode/**'
- '**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: 'build: ${{ matrix.os }} (node@lts/*)'
runs-on: ${{ matrix.os }}
timeout-minutes: 25
strategy:
matrix:
OS: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: disable git crlf
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: checkout
uses: actions/checkout@v4
- name: setup pnpm
uses: pnpm/action-setup@v4
- name: setup node@lts/*
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: setup ni
run: npm i -g @antfu/ni
- name: install dependencies
run: nci
- name: build packages
run: nr build
# - name: test packages
# run: nr test