Skip to content

Bump undici from 5.28.4 to 5.28.5 in /server #130

Bump undici from 5.28.4 to 5.28.5 in /server

Bump undici from 5.28.4 to 5.28.5 in /server #130

Workflow file for this run

name: Server CI
on:
pull_request:
branches:
- main
- v*
paths:
- "server/**"
defaults:
run:
shell: bash
working-directory: server/
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: server/
- run: npm ci --force
- run: npm run lint
- run: npm run prettier
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build Docker image
uses: docker/build-push-action@v3
with:
context: server/
file: server/Dockerfile
push: ${{ github.event_name != 'pull_request' }}