use latest @shiftcode dependencies + node 24 #467
Workflow file for this run
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
| # secrets.GITHUB_TOKEN is provided to each job by default, lifetime: 60minutes. | |
| # See https://help.github.com/en/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token | |
| name: Lint, Test, Build and optionally Publish | |
| on: | |
| # push only for branches (ignore tags) | |
| push: | |
| branches: | |
| - 'main' | |
| tags-ignore: | |
| - '**' | |
| # pull request only for branches (ignore tags) | |
| pull_request: | |
| branches: | |
| - '**' | |
| tags-ignore: | |
| - '**' | |
| jobs: | |
| checkExecution: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| shouldExecute: ${{ steps.stepCheckExecution.outputs.shouldExecute }} | |
| steps: | |
| - name: Dump GitHub context | |
| run: | | |
| echo "::group::github context" | |
| echo "$GITHUB_CONTEXT" | |
| echo "::endgroup::" | |
| env: | |
| GITHUB_CONTEXT: ${{ toJson(github) }} | |
| - id: stepCheckExecution | |
| name: Check for execution | |
| uses: shiftcode/github-action-skip@v4.0.0 | |
| with: | |
| skipOnCommitMsg: '[skip_build]' | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| build: | |
| runs-on: ubuntu-latest | |
| needs: checkExecution | |
| # only execute if not skipped by commit message | |
| if: needs.checkExecution.outputs.shouldExecute == 'true' | |
| steps: | |
| # checkout branch | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| # 0 indicates all history, because publish requires tag information | |
| fetch-depth: 0 | |
| # we need priviledged access to publish to protected branch | |
| token: ${{ secrets.GH_TOKEN_PUBLIC_REPO }} | |
| # setup node and dependency cache | |
| - name: Setup Node and NPM Cache | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: 'npm' | |
| # NPM Authenticate | |
| - name: Auth for github registry | |
| run: | | |
| npm config set //npm.pkg.github.com/:_authToken=$REGISTRY_TOKEN | |
| env: | |
| REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # install dependencies | |
| - name: Install | |
| run: HUSKY=0 npm ci --include=optional | |
| # check formatting | |
| - name: Check Formatting | |
| run: npm run format:ci | |
| # lint | |
| - name: Lint | |
| run: npm run lint:ci | |
| # test | |
| - name: Test | |
| run: npm run test:ci | |
| # build | |
| - name: Build | |
| run: npm run build:ci | |
| - name: Build Styleguide | |
| run: npm run build:styleguide | |
| # publish | |
| - name: Publish | |
| run: | | |
| git config user.email "actions@github.com" | |
| git config user.name "Github Actions" | |
| npx publish-lib | |
| env: | |
| GITHUB_CONTEXT: ${{ toJson(github) }} | |
| GH_TOKEN: ${{ secrets.GH_TOKEN_PUBLIC_REPO }} # necessary for publish-libs script |