refactor: Remove unused cache constants from const.ts (#1000) #212
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: CI (master) | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags-ignore: | |
| - "**" # Ignore all tags to prevent duplicate builds when tags are pushed. | |
| concurrency: | |
| group: release | |
| cancel-in-progress: false | |
| jobs: | |
| code_checks: | |
| name: Code checks | |
| uses: ./.github/workflows/_check_code.yaml | |
| integration_tests: | |
| name: Integration tests | |
| uses: ./.github/workflows/_integration_tests.yaml | |
| secrets: | |
| APIFY_TOKEN: ${{ secrets.APIFY_TEST_USER_API_TOKEN }} | |
| release_metadata: | |
| # Skip this for "ci", "docs" and "test" commits | |
| if: "!startsWith(github.event.head_commit.message, 'ci') && !startsWith(github.event.head_commit.message, 'docs') && !startsWith(github.event.head_commit.message, 'test')" | |
| name: Update pre-release metadata | |
| uses: ./.github/workflows/_update_release_metadata.yaml | |
| secrets: inherit | |
| with: | |
| release_type: prerelease | |
| publish_to_pkg_pr_new: | |
| needs: [ release_metadata ] | |
| name: Publish to pkg.pr.new | |
| uses: ./.github/workflows/_publish_to_pkg_pr_new.yaml | |
| with: | |
| ref: ${{ needs.release_metadata.outputs.changelog_commitish }} | |
| publish_to_npm: | |
| name: Publish to NPM | |
| needs: [ release_metadata ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Execute publish workflow | |
| uses: apify/actions/execute-workflow@v1.1.2 | |
| with: | |
| workflow: manual_publish_to_npm.yaml | |
| inputs: > | |
| { | |
| "ref": "${{ needs.release_metadata.outputs.changelog_commitish }}", | |
| "tag": "beta" | |
| } | |
| smoke_test: | |
| name: Smoke test published package | |
| needs: [ publish_to_npm ] | |
| uses: ./.github/workflows/_smoke_test_npm_package.yaml | |
| with: | |
| npm_tag: beta |