build: bump cross-spawn from 7.0.3 to 7.0.6 #347
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: 'main' | |
concurrency: main_environment | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
cicd: | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
steps: | |
- name: 'Checkout sources' | |
uses: actions/checkout@v4 | |
- name: 'Setup NodeJS' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: 'Install dependencies' | |
run: yarn install | |
- name: 'Build distribution' | |
run: yarn action:dist | |
- name: 'Run unit-tests' | |
run: yarn test | |
- name: 'Run code coverage' | |
run: yarn run coverage | |
- name: 'Upload code coverage report' | |
run: bash <(curl -s https://codecov.io/bash) -t ${{secrets.CODECOV_SECRET_TOKEN }} | |
- name: 'Build action dist' | |
run: yarn action:dist | |
- name: 'Build action docker image' | |
run: docker build -f Dockerfile-action -t cib-action . | |
- name: 'Build server dist' | |
run: yarn server:dist | |
- name: 'Build server docker image' | |
run: docker build -t cib . | |
- name: 'Configure AWS credentials' | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} | |
- name: 'Login to Amazon ECR' | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: aws-actions/amazon-ecr-login@v2 | |
with: | |
mask-password: 'true' | |
- name: 'Tag image for PR and push to ECR' | |
if: ${{ github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' }} | |
run: | | |
docker tag cib ${{ secrets.AWS_ECR_ENDPOINT }}:pr-${GITHUB_SHA::8} | |
docker push ${{ secrets.AWS_ECR_ENDPOINT }}:pr-${GITHUB_SHA::8} | |
- name: 'Tag image for main and push to ECR' | |
if: ${{ github.event_name == 'push' && github.actor != 'dependabot[bot]' }} | |
run: | | |
docker tag cib ${{ secrets.AWS_ECR_ENDPOINT }}:main-${GITHUB_SHA::8} | |
docker tag cib ${{ secrets.AWS_ECR_ENDPOINT }}:main-latest | |
docker push ${{ secrets.AWS_ECR_ENDPOINT }}:main-${GITHUB_SHA::8} | |
docker push ${{ secrets.AWS_ECR_ENDPOINT }}:main-latest |