Fix and cleanup of v2 setup actions
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>pull/93/head
parent
3f08c86128
commit
e9cb922263
@ -1,38 +0,0 @@
|
|||||||
name: setup-buildx-precheckin
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- v2-working-branch # remove when merged to master
|
|
||||||
paths:
|
|
||||||
- .github/workflows/setup-buildx-precheckin.yml
|
|
||||||
- setup-buildx/**
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- v2-working-branch # remove when merged to master
|
|
||||||
paths:
|
|
||||||
- .github/workflows/setup-buildx-precheckin.yml
|
|
||||||
- setup-buildx/**
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
pre-checkin:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout
|
|
||||||
uses: actions/checkout@v2.3.1
|
|
||||||
-
|
|
||||||
name: Install
|
|
||||||
run: yarn --cwd ./setup-buildx/ install
|
|
||||||
-
|
|
||||||
name: Pre-checkin
|
|
||||||
run: yarn --cwd ./setup-buildx/ run pre-checkin
|
|
||||||
-
|
|
||||||
name: Check for uncommitted changes
|
|
||||||
run: |
|
|
||||||
if [[ `git status --porcelain` ]]; then
|
|
||||||
git status --porcelain
|
|
||||||
echo "::warning::Found changes. Please run 'yarn --cwd ./setup-buildx/ run pre-checkin' and push"
|
|
||||||
fi
|
|
@ -1,38 +0,0 @@
|
|||||||
name: setup-qemu-precheckin
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- v2-working-branch # remove when merged to master
|
|
||||||
paths:
|
|
||||||
- .github/workflows/setup-qemu-precheckin.yml
|
|
||||||
- setup-qemu/**
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- v2-working-branch # remove when merged to master
|
|
||||||
paths:
|
|
||||||
- .github/workflows/setup-qemu-precheckin.yml
|
|
||||||
- setup-qemu/**
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
pre-checkin:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout
|
|
||||||
uses: actions/checkout@v2.3.1
|
|
||||||
-
|
|
||||||
name: Install
|
|
||||||
run: yarn --cwd ./setup-qemu/ install
|
|
||||||
-
|
|
||||||
name: Pre-checkin
|
|
||||||
run: yarn --cwd ./setup-qemu/ run pre-checkin
|
|
||||||
-
|
|
||||||
name: Check for uncommitted changes
|
|
||||||
run: |
|
|
||||||
if [[ `git status --porcelain` ]]; then
|
|
||||||
git status --porcelain
|
|
||||||
echo "::warning::Found changes. Please run 'yarn --cwd ./setup-qemu/ run pre-checkin' and push"
|
|
||||||
fi
|
|
@ -1,12 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
clearMocks: true,
|
|
||||||
moduleFileExtensions: ['js', 'ts'],
|
|
||||||
setupFiles: ["dotenv/config"],
|
|
||||||
testEnvironment: 'node',
|
|
||||||
testMatch: ['**/*.test.ts'],
|
|
||||||
testRunner: 'jest-circus/runner',
|
|
||||||
transform: {
|
|
||||||
'^.+\\.ts$': 'ts-jest'
|
|
||||||
},
|
|
||||||
verbose: false
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue