chore(deps-dev): bump @dataform/cli from 3.0.63 to 3.0.64 #427
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
| --- | |
| name: CI | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| packages: read | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| permissions: | |
| statuses: write # To report GitHub Actions status checks | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v7.0.1 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Lint Code Base | |
| run: npm run lint | |
| - name: Compile Dataform Models | |
| run: npm run compile | |
| dependabot: | |
| name: Dependabot auto-merge | |
| runs-on: ubuntu-latest | |
| if: >- | |
| github.event.pull_request.user.login == 'dependabot[bot]' && | |
| github.repository == 'HTTPArchive/dataform' | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Dependabot metadata | |
| id: metadata | |
| uses: dependabot/fetch-metadata@v3 | |
| with: | |
| github-token: '${{ secrets.GITHUB_TOKEN }}' | |
| - name: Enable auto-merge for Dependabot PRs | |
| if: >- | |
| steps.metadata.outputs.update-type == | |
| 'version-update:semver-patch' || | |
| steps.metadata.outputs.update-type == | |
| 'version-update:semver-minor' || | |
| steps.metadata.outputs.update-type == | |
| 'null' | |
| run: gh pr merge --auto --squash "$PR_URL" | |
| env: | |
| PR_URL: ${{github.event.pull_request.html_url}} | |
| GH_TOKEN: ${{secrets.GITHUB_TOKEN}} |