forked from mei23/misskey
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 838 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
39
40
name: Node.js CI
on: [push]
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
services:
mongo:
image: mongo:5-focal
ports:
- 57010:27017
redis:
image: redis:bullseye
ports:
- 56310:6379
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: 7
- uses: actions/setup-node@v3
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