Skip to content

chore(deps): update dependency lint-staged to v15.3.0 (#529) #293

chore(deps): update dependency lint-staged to v15.3.0 (#529)

chore(deps): update dependency lint-staged to v15.3.0 (#529) #293

Workflow file for this run

name: Build
on: [push]
env:
CI_BUILD_NUM: ${{ github.run_id }}
CI_BRANCH: ${{ github.ref_name }}
AWS_DEPLOY_ROLE: arn:aws:iam::118435662149:role/helix-gh-deploy-config-service
AWS_DEPLOY_SECRET_ID: /helix/github-action-secrets
permissions:
id-token: write
contents: write # semantic-release-dry verifies the write permissions
issues: read # needed by semantic-release
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
test-deploy:
name: Test Deploy
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
needs: test
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm install
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: us-east-1
role-to-assume: ${{ env.AWS_DEPLOY_ROLE }}
- name: Fetch AWS Secrets
uses: aws-actions/aws-secretsmanager-get-secrets@v2
with:
parse-json-secrets: true
secret-ids: |
${{ env.AWS_DEPLOY_SECRET_ID }}
# see https://github.com/aws-actions/aws-secretsmanager-get-secrets/issues/11
- name: unprefix variables
run: |
for variable in "${!_HELIX_GITHUB_ACTION_SECRETS_@}"; do
echo "${variable#_HELIX_GITHUB_ACTION_SECRETS_}=${!variable}" >> $GITHUB_ENV
done
- name: Branch Deployment
run: npm run deploy-ci
- name: Post-Deployment Integration Test
run: npm run test-postdeploy
release:
name: Release
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
needs: test
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm install
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: us-east-1
role-to-assume: ${{ env.AWS_DEPLOY_ROLE }}
- name: Fetch AWS Secrets
uses: aws-actions/aws-secretsmanager-get-secrets@v2
with:
parse-json-secrets: true
secret-ids: |
${{ env.AWS_DEPLOY_SECRET_ID }}
# see https://github.com/aws-actions/aws-secretsmanager-get-secrets/issues/11
- name: unprefix variables
run: |
for variable in "${!_HELIX_GITHUB_ACTION_SECRETS_@}"; do
echo "${variable#_HELIX_GITHUB_ACTION_SECRETS_}=${!variable}" >> $GITHUB_ENV
done
- name: Semantic Release
run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}