Skip to content

feat: make build artifacts bucket configurable #4

feat: make build artifacts bucket configurable

feat: make build artifacts bucket configurable #4

Workflow file for this run

---
name: check pr
on:
pull_request: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm lint
actions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm actions
- run: |
git diff --name-only -- "actions/**/*.js" | xargs --no-run-if-empty git diff --exit-code -- \
|| (echo "Change to actions detected, please run 'npm run actions' and commit the changes" && false)
workflows:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm workflows
- run: |
git diff --name-only -- ".github/workflows/*.yml" | xargs --no-run-if-empty git diff --exit-code -- \
|| (echo "Change to workflows detected, please run 'npm run workflows' and commit the changes" && false)
test:
runs-on: ubuntu-latest
needs:
- lint
- actions
- workflows
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci-test
check-title:
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}