Skip to content

chore(deps): update node.js to v20.17.0 #1413

chore(deps): update node.js to v20.17.0

chore(deps): update node.js to v20.17.0 #1413

Workflow file for this run

name: Tests
on:
pull_request:
branches: '**'
push:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
base: [debian, alpine]
env:
BASE: ${{ matrix.base }} # needed in tests/version.sh
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Build ${{ matrix.base }} image
run: docker buildx build -f ${{ matrix.base }}/Dockerfile -t hedgedoc .
- run: docker network create postgres
- run: docker run --name postgres --network postgres -e POSTGRES_USER=hedgedoc -e POSTGRES_PASSWORD=password -e POSTGRES_DB=hedgedoc --net-alias database -d postgres:13.1
- run: ./tests/chore/startContainer.sh
- run: ls tests/*.sh | parallel
- run: ./tests/chore/stopContainer.sh