Update dependency async to v3.2.6 (#4470) #1282
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: Pipeline Contentful App Extensions | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
check-updates: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/yldio/asap-hub/node-python-sq:86a189edc900d4e1afdcf3935c697292f69d409b | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
outputs: | |
GIT_DIFF: ${{ steps.diff.outputs.diff }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Re-Build | |
uses: ./.github/actions/build-rebuild | |
- name: Cache build typecheck output | |
uses: ./.github/actions/cache-unplugged | |
with: | |
environment-name: Production | |
- name: Add safe directory | |
run: git config --system --add safe.directory /__w/asap-hub/asap-hub | |
- name: Check if some app has changed | |
uses: technote-space/get-diff-action@v6 | |
with: | |
PATTERNS: | | |
packages/contentful-app-extensions/**/* | |
.github/**/* | |
- id: diff | |
run: | | |
echo "::set-output name=diff::${{ env.GIT_DIFF }}" | |
test: | |
needs: [check-updates] | |
if: ${{ needs.check-updates.outputs.GIT_DIFF != '' }} | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/yldio/asap-hub/node-python-sq:86a189edc900d4e1afdcf3935c697292f69d409b | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run contentful app extension tests | |
run: yarn workspaces foreach -j 2 --include "*/contentful-app-*" -vp run test:no-watch | |
build-and-deploy: | |
needs: [test] | |
if: ${{ needs.check-updates.outputs.GIT_DIFF != '' }} | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/yldio/asap-hub/node-python-sq:86a189edc900d4e1afdcf3935c697292f69d409b | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
strategy: | |
matrix: | |
app: | |
- auto-populate-date-field | |
- date-field-as-first-published-at | |
- date-field-as-last-published-at | |
- disabled-fields | |
- event-additional-materials | |
- event-custom-validation | |
- event-speakers-title | |
- event-speakers-gp2 | |
- field-as-updated-at | |
- user-positions | |
- membership-reference | |
- membership-custom-validation | |
- clear-on-change | |
- working-group-deliverables | |
- partial-last-updated | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
id: setup | |
uses: ./.github/actions/setup-environment | |
with: | |
environment-name: Production | |
- name: Re-Build | |
uses: ./.github/actions/build-rebuild | |
- name: Build ${{matrix.app}} | |
run: yarn workspace @asap-hub/contentful-app-${{ matrix.app }} build | |
- name: Deploy ${{matrix.app}} | |
uses: contentful/actions-app-deploy@v1 | |
with: | |
organization-id: ${{ steps.setup.outputs.contentful-organization-id }} | |
app-definition-id: ${{ steps.setup.outputs[ format('contentful-app-{0}', matrix.app) ] }} | |
access-token: ${{ secrets.CONTENTFUL_MANAGEMENT_TOKEN }} | |
folder: packages/contentful-app-extensions/${{matrix.app}}/build |