Skip to content

feat: Implement New Attributions Update Workflow via GitHub Actions #24

feat: Implement New Attributions Update Workflow via GitHub Actions

feat: Implement New Attributions Update Workflow via GitHub Actions #24

name: Generate and Validate Attributions
on:
pull_request:
branches:
- develop
types:
- opened
- synchronize
jobs:
generate-and-validate-attributions:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies from cache
run: yarn --immutable
- name: Generate Attributions
run: yarn generate:attributions
- name: Check attributions changes
run: yarn test:attributions-check