Skip to content

Commit 2e30f1f

Browse files
committed
swap to pnpm and turn on github actions
1 parent 1880cf5 commit 2e30f1f

5 files changed

Lines changed: 1174 additions & 33 deletions

File tree

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
pull_request: {}
9+
10+
concurrency:
11+
group: ci-${{ github.head_ref || github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
test:
16+
name: Test
17+
runs-on: ${{ matrix.os }}
18+
continue-on-error: true
19+
strategy:
20+
matrix:
21+
os: [ ubuntu-latest, windows-latest, macos-latest ]
22+
node_version: ['20', '22', '24']
23+
24+
steps:
25+
- uses: actions/checkout@v6
26+
- uses: pnpm/action-setup@v4
27+
- uses: actions/setup-node@v6
28+
with:
29+
node-version: ${{ matrix.node_version }}
30+
- run: pnpm install
31+
- run: npm install -g cross-env
32+
- run: pnpm test

.travis.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

appveyor.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"broccoli-plugin",
2323
"javascript"
2424
],
25+
"packageManager": "pnpm@10.25.0",
2526
"dependencies": {
2627
"broccoli-kitchen-sink-helpers": "^0.3.1",
2728
"broccoli-plugin": "^1.2.1",

0 commit comments

Comments
 (0)