2023-09-27 12:32:38 -04:00
|
|
|
name: CI/CD
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request: # Runs whenever a pull request is created or updated
|
2023-10-02 21:13:12 -04:00
|
|
|
push: # Runs whenever a commit is pushed to the repository...
|
|
|
|
branches: [main, develop, hotfix/*] # ...on any of these branches
|
|
|
|
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
|
2023-09-27 12:32:38 -04:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-09-27 13:28:07 -04:00
|
|
|
permissions:
|
2023-09-28 12:42:22 -04:00
|
|
|
contents: write # publish a GitHub release
|
|
|
|
pages: write # deploy to GitHub Pages
|
|
|
|
issues: write # comment on released issues
|
|
|
|
pull-requests: write # comment on released pull requests
|
2023-09-27 13:28:07 -04:00
|
|
|
|
2023-09-27 12:32:38 -04:00
|
|
|
jobs:
|
|
|
|
ci-cd:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-02-15 19:16:45 -05:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
|
|
|
|
- uses: wagoid/commitlint-github-action@5ce82f5d814d4010519d15f0552aec4f17a1e1fe # v5
|
2023-09-27 12:32:38 -04:00
|
|
|
if: github.event_name == 'pull_request'
|
2024-07-29 04:49:49 -04:00
|
|
|
- uses: actions/setup-node@26961cf329f22f6837d5f54c3efd76b480300ace # v4
|
2023-09-27 12:32:38 -04:00
|
|
|
with:
|
|
|
|
cache: 'npm'
|
|
|
|
node-version-file: '.nvmrc'
|
|
|
|
- name: Info
|
|
|
|
run: |
|
2023-09-27 13:28:07 -04:00
|
|
|
cat <<EOF
|
|
|
|
Node version: $(node --version)
|
|
|
|
NPM version: $(npm --version)
|
|
|
|
GitHub ref: ${{ github.ref }}
|
|
|
|
GitHub head ref: ${{ github.head_ref }}
|
|
|
|
EOF
|
2023-09-27 12:32:38 -04:00
|
|
|
- name: Setup
|
|
|
|
run: |
|
|
|
|
npm ci
|
|
|
|
mkdir -p ./test/results
|
|
|
|
- run: npm test
|
|
|
|
- run: npm run build
|
|
|
|
- name: Deploy to GH Pages
|
2024-02-15 19:16:45 -05:00
|
|
|
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3
|
2023-09-27 13:28:07 -04:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: playground
|
|
|
|
full_commit_message: "Build for ${{ github.sha }} ${{ github.event.head_commit.message }}"
|
2023-09-27 12:32:38 -04:00
|
|
|
- name: semantic-release
|
2023-09-28 12:03:43 -04:00
|
|
|
env:
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-09-27 12:32:38 -04:00
|
|
|
run: npx --no -- semantic-release
|