diff --git a/.github/workflows/roles_react_files_cra_typescript.yaml b/.github/workflows/roles_react_files_cra_typescript.yaml deleted file mode 100644 index 5f0a4866..00000000 --- a/.github/workflows/roles_react_files_cra_typescript.yaml +++ /dev/null @@ -1,38 +0,0 @@ -name: roles_react_files_cra_typescript -on: - push: - paths: - - roles/react/files/cra/typescript/** - - .github/workflows/roles_react_files_cra_typescript.yaml - -jobs: - ci: - runs-on: ubuntu-latest - env: - NODE_VERSION: 19 # renovate: datasource=docker depName=node versioning=docker - IMAGE: ghcr.io/${{ github.repository }}-cra-typescript - - steps: - - name: Setup node - uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 - with: - node-version: ${{ env.NODE_VERSION }} - - - name: Clone repository - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - - name: Install dependencies - run: npm ci - - - name: Set PUSH_IMAGE - if: endsWith(github.ref, '/master') - run: echo "PUSH_IMAGE=True" >> $GITHUB_ENV - - - uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Run CI - run: npx ts-node --esm roles/react/files/cra/typescript/ci.mts