Merge pull request #241 from willmorgan/dependabot/npm_and_yarn/build… #336
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: Lint, Test & Release | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
commitlint: | |
name: Lint commits | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14.x | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm clean-install | |
- name: Lint commit | |
if: github.event_name == 'push' | |
run: npm run lint:commits -- --from HEAD~1 --to HEAD --verbose | |
- name: Lint commits | |
if: github.event_name == 'pull_request' | |
run: npm run lint:commits -- --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose | |
codelint: | |
name: Lint code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14.x | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm clean-install | |
- name: Lint code | |
run: npm run lint:code | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
needs: | |
- commitlint | |
- codelint | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x, 18.x, 20.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm clean-install | |
- name: Test code | |
run: npm test -- --forbid-only | |
coverage: | |
name: Run code coverage | |
runs-on: ubuntu-latest | |
needs: | |
- commitlint | |
- codelint | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Node.js 14.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14.x | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm clean-install | |
- name: Test code | |
run: npm run test:coverage --silent -- npm test -- --forbid-only | |
- name: Report coverage | |
run: | | |
echo "# Code coverage" >> $GITHUB_STEP_SUMMARY | |
npx nyc report | sed --expression='1d;$d' >> $GITHUB_STEP_SUMMARY | |
if: ${{ !cancelled() }} | |
release: | |
name: Release | |
concurrency: release | |
if: ${{ github.repository_owner == 'willmorgan' && github.event_name == 'push' && github.actor != 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
needs: | |
- commitlint | |
- codelint | |
- test | |
permissions: | |
contents: write # to be able to publish a GitHub release | |
issues: write # to be able to comment on released issues | |
pull-requests: write # to be able to comment on released pull requests | |
id-token: write # to enable use of OIDC for npm provenance | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "16.x" | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm clean-install | |
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies | |
run: npm audit signatures | |
- name: Release | |
env: | |
NPM_CONFIG_PROVENANCE: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npm run release |