This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
0.4.106 #121
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: test-and-release | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "examples/**" | |
- "media/**" | |
- "scripts/**" | |
- "LICENSE" | |
pull_request: | |
paths-ignore: | |
- "examples/**" | |
- "media/**" | |
- "scripts/**" | |
- "LICENSE" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18, 19, 20] | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-node@main | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Cache node modules | |
uses: actions/cache@main | |
env: | |
cache-name: cache-node-${{ matrix.node }}-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install | |
run: npm ci | |
- name: Tests | |
run: npm test | |
version-check: | |
runs-on: ubuntu-latest | |
needs: test | |
if: github.ref == 'refs/heads/master' | |
outputs: | |
changed: ${{ steps.check.outputs.changed }} | |
version: ${{ steps.check.outputs.version }} | |
steps: | |
- uses: actions/checkout@main | |
- id: check | |
uses: EndBug/version-check@v2 | |
with: | |
diff-search: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
release: | |
runs-on: ubuntu-latest | |
needs: version-check | |
if: needs.version-check.outputs.changed == 'true' | |
steps: | |
- uses: actions/checkout@main | |
# https://github.com/rickstaa/action-create-tag/issues/10 | |
- name: "Change perms on GITHUB_WORKSPACE" | |
run: | | |
sudo chown -R root:root $GITHUB_WORKSPACE | |
sudo chmod -R 0777 $GITHUB_WORKSPACE | |
- uses: rickstaa/action-create-tag@main | |
with: | |
tag: v${{ needs.version-check.outputs.version }} | |
message: v${{ needs.version-check.outputs.version }} | |
- uses: ncipollo/release-action@main | |
with: | |
name: v${{ needs.version-check.outputs.version }} | |
tag: v${{ needs.version-check.outputs.version }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
npm-publish: | |
runs-on: ubuntu-latest | |
needs: release | |
if: needs.version-check.outputs.changed == 'true' | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-node@main | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org" | |
- uses: actions/cache@main | |
env: | |
cache-name: cache-node-${{ matrix.node }}-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install | |
run: | | |
set -e | |
npm ci | |
- name: Publish | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |