We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5402b0e + baa7ad7 commit f6b02ffCopy full SHA for f6b02ff
3 files changed
.github/workflows/server-tests.yml
@@ -18,22 +18,20 @@ jobs:
18
test-server:
19
runs-on: ubuntu-latest
20
container:
21
- image: node:20-alpine
+ image: node:20
22
23
steps:
24
- name: Checkout code
25
uses: actions/checkout@v4
26
27
- name: Install system dependencies
28
- run: apk add --no-cache python3 make g++ vips-dev mongodb
+ run: apt-get update && apt-get install -y --no-install-recommends python3 make g++ libvips-dev
29
30
- name: Install dependencies in server directory
31
run: |
32
cd server
33
- npm install --platform=linux --libc=musl
+ npm install
34
35
- name: Run tests in server directory
36
- env:
37
- MONGOMS_SYSTEM_BINARY: /usr/bin/mongod
38
run: npm test
39
working-directory: ./server
0 commit comments