Skip to content

Merge pull request #7 from egose/renovate/tsx-4.x-lockfile #15

Merge pull request #7 from egose/renovate/tsx-4.x-lockfile

Merge pull request #7 from egose/renovate/tsx-4.x-lockfile #15

Workflow file for this run

name: Test
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-app:
runs-on: ubuntu-22.04
timeout-minutes: 20
steps:
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Setup Tools
uses: ./.github/actions/setup-tools
- name: Setup NPM Packages
uses: ./.github/actions/setup-yarn
- name: Run App build
run: npm run build
pre-commit:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Setup Tools
uses: ./.github/actions/setup-tools
- name: Setup NPM Packages
uses: ./.github/actions/setup-yarn
- name: Rerun Pre-Commit Hooks on CI
run: |
pre-commit run --config=.pre-commit-config.yaml --color=always --show-diff-on-failure --all-files