chore: change sofie-code-preset to fork #39
This file contains hidden or 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: Node CI | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+*' | |
| pull_request: | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| # only run for tags | |
| if: contains(github.ref, 'refs/tags/') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Use Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - name: Check release is desired | |
| id: do-publish | |
| run: | | |
| if [ -z "${{ secrets.NPM_TOKEN }}" ]; then | |
| echo "No Token" | |
| else | |
| PACKAGE_NAME=$(npm info -s . name) | |
| PUBLISHED_VERSION=$(npm info -s $PACKAGE_NAME version) | |
| THIS_VERSION=$(node -p "require('./package.json').version") | |
| # Simple bash helper to comapre version numbers | |
| verlte() { | |
| [ "$1" = "`echo -e "$1\n$2" | sort -V | head -n1`" ] | |
| } | |
| verlt() { | |
| [ "$1" = "$2" ] && return 1 || verlte $1 $2 | |
| } | |
| if verlt $PUBLISHED_VERSION $THIS_VERSION | |
| then | |
| echo "Publishing latest" | |
| echo "tag=latest" >> $GITHUB_OUTPUT | |
| else | |
| echo "Publishing hotfix" | |
| echo "tag=hotfix" >> $GITHUB_OUTPUT | |
| fi | |
| fi | |
| - name: Prepare build | |
| if: ${{ steps.do-publish.outputs.tag }} | |
| run: | | |
| npm install | |
| env: | |
| CI: true | |
| - name: Build library | |
| if: ${{ steps.do-publish.outputs.tag }} | |
| run: | | |
| npm run build | |
| env: | |
| CI: true | |
| - name: Publish to NPM | |
| if: ${{ steps.do-publish.outputs.tag }} | |
| run: | | |
| echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc | |
| NEW_VERSION=$(node -p "require('./package.json').version") | |
| npm publish --access=public --new-version=$NEW_VERSION --network-timeout 100000 --tag ${{ steps.do-publish.outputs.tag }} | |
| echo "**Published:** $NEW_VERSION" >> $GITHUB_STEP_SUMMARY | |
| env: | |
| CI: true | |
| validate-dependencies: | |
| name: Validate production dependencies | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - name: Prepare Environment | |
| run: | | |
| npm install | |
| env: | |
| CI: true | |
| - name: Validate production dependencies | |
| run: | | |
| if ! git log --format=oneline -n 1 | grep -q "\[ignore-audit\]"; then | |
| npm run validate:dependencies | |
| else | |
| echo "Skipping audit" | |
| fi | |
| env: | |
| CI: true | |
| validate-all-dependencies: | |
| name: Validate all dependencies | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - name: Prepare Environment | |
| run: | | |
| npm install | |
| env: | |
| CI: true | |
| - name: Validate production dependencies | |
| run: | | |
| npm run validate:dependencies | |
| env: | |
| CI: true | |
| - name: Validate dev dependencies | |
| run: | | |
| npm run validate:dev-dependencies | |
| env: | |
| CI: true |