forked from misskey-dev/misskey
-
Notifications
You must be signed in to change notification settings - Fork 12
38 lines (32 loc) · 818 Bytes
/
nodejs.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
name: Node.js CI
on: [push]
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
services:
mongo:
image: mongo:4.4-bionic
ports:
- 57010:27017
redis:
image: redis:6.2-alpine
ports:
- 56310:6379
steps:
- uses: actions/checkout@v4
- uses: pnpm/[email protected]
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: node cli/diag-environment.js
- run: sudo apt-get update -y
- run: sudo apt-get install -y --no-install-recommends ffmpeg
- run: pnpm i --frozen-lockfile
- run: pnpm build
- run: ls built/meta.json
- run: cp test/test.yml .config/
- run: pnpm test