build(deps): bump rate-limiter-flexible from 2.4.1 to 2.4.2 in /src #779
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'develop' | |
tags: | |
- 'v?[0-9]+.[0-9]+.[0-9]+' | |
env: | |
TEST_TAG: etherpad/etherpad:test | |
permissions: | |
contents: read | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Check out | |
uses: actions/checkout@v3 | |
- | |
name: Set up QEMU | |
if: github.event_name == 'push' | |
uses: docker/setup-qemu-action@v2 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Build and export to Docker | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
load: true | |
tags: ${{ env.TEST_TAG }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- | |
name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
cache: 'npm' | |
cache-dependency-path: | | |
src/package-lock.json | |
src/bin/doc/package-lock.json | |
- | |
name: Test | |
run: | | |
docker run --rm -d -p 9001:9001 --name test ${{ env.TEST_TAG }} | |
docker logs -f test & | |
./src/bin/installDeps.sh | |
while true; do | |
echo "Waiting for Docker container to start..." | |
status=$(docker container inspect -f '{{.State.Health.Status}}' test) || exit 1 | |
case ${status} in | |
healthy) break;; | |
starting) sleep 2;; | |
*) printf %s\\n "unexpected status: ${status}" >&2; exit 1;; | |
esac | |
done | |
(cd src && npm run test-container) | |
git clean -dxf . | |
- | |
name: Docker meta | |
if: github.event_name == 'push' | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: etherpad/etherpad | |
tags: | | |
type=ref,event=branch | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=semver,pattern={{major}} | |
- | |
name: Log in to Docker Hub | |
if: github.event_name == 'push' | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Build and push | |
if: github.event_name == 'push' | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |