From 2fc61a6da3cc8bf94373ab5574cbb09c5942e67c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Salazar?= Date: Wed, 23 Nov 2022 20:16:05 -0600 Subject: [PATCH] format yml files --- .github/workflows/cd-manual.yml | 4 ++-- .github/workflows/cd.yml | 5 ++--- .github/workflows/ci.yml | 38 ++++++++++++++++----------------- 3 files changed, 23 insertions(+), 24 deletions(-) diff --git a/.github/workflows/cd-manual.yml b/.github/workflows/cd-manual.yml index 893ec3e4..ad25b252 100644 --- a/.github/workflows/cd-manual.yml +++ b/.github/workflows/cd-manual.yml @@ -20,10 +20,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - + - name: Set up QEMU uses: docker/setup-qemu-action@v2 - + - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v2 diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index c16ce1f5..22d03e20 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -3,7 +3,6 @@ name: Create docker images on: [create] jobs: - build: name: Build, push, and deploy if: ${{ startsWith(github.ref, 'refs/tags/v') }} @@ -16,10 +15,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - + - name: Set up QEMU uses: docker/setup-qemu-action@v2 - + - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e702650b..7d7ec09f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,24 +16,24 @@ jobs: strategy: matrix: include: - - node-version: 18.x - db-type: postgresql - - node-version: 18.x - db-type: mysql - - node-version: 16.x - db-type: postgresql - - node-version: 16.x - db-type: mysql + - node-version: 18.x + db-type: postgresql + - node-version: 18.x + db-type: mysql + - node-version: 16.x + db-type: postgresql + - node-version: 16.x + db-type: mysql steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - env: - DATABASE_TYPE: ${{ matrix.db-type }} - - run: npm i -g pnpm - - run: pnpm install - - run: pnpm build + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + cache: "npm" + env: + DATABASE_TYPE: ${{ matrix.db-type }} + - run: npm i -g pnpm + - run: pnpm install + - run: pnpm build