Trigger new release #438
Workflow file for this run
This file contains 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: PR validation | |
on: | |
pull_request: | |
types: [ready_for_review, opened, synchronize, reopened, edited] | |
branches: | |
- main | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
secret-scan: | |
name: Secret scan | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Scan for secrets | |
uses: edplato/trufflehog-actions-scan@master | |
with: | |
scanArguments: '--regex -x=truffle-hog-exclude.txt' | |
code-quality: | |
name: Code quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/prepare | |
- name: Run linters | |
run: pnpm nx run-many --target=lint --all | |
- name: Run unit tests | |
run: pnpm nx run-many --target=test --codeCoverage --all | |
- name: Build plugin | |
run: pnpm nx build nx-playwright | |
version-check: | |
name: Version check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/prepare | |
- name: Check version | |
run: pnpm ts-node ci/version-check | |
test-plugin-generation: | |
name: Test plugin generation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/prepare | |
- name: Test plugin generation | |
run: | | |
set -x | |
NX_WORKSPACE=test-nx | |
NX_APP=test-app | |
pushd .. | |
echo "Create a new workspace to test with" | |
pnpm create nx-workspace \ | |
--name=$NX_WORKSPACE --appName=$NX_APP \ | |
--preset=next --style=@emotion/styled \ | |
--e2eTestRunner=playwright --nextAppDir=false \ | |
--nxCloud=skip --interactive=false < /dev/null | |
pushd $NX_WORKSPACE | |
echo "Remove autogenerated e2e app" | |
pnpm nx generate remove $NX_APP-e2e | |
git \ | |
-c user.name="pr-bot" \ | |
-c user.email="[email protected]" \ | |
commit -am "Remove $NX_APP-e2e" | |
popd | |
popd | |
#!/bin/bash | |
echo "Add serve target to nx next app" | |
./scripts/add-serve-target.sh -w ../$NX_WORKSPACE -a $NX_APP | |
echo "Test ./scripts/local-test.sh (with cleanup flag)" | |
./scripts/local-test.sh -w ../$NX_WORKSPACE -a $NX_APP | |
test -z "$(git status --porcelain)" | |
pr-validation: | |
name: PR validation | |
needs: [code-quality, secret-scan, version-check, test-plugin-generation] | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Check jobs for errors | |
uses: actions/[email protected] | |
with: | |
script: | | |
const checkJobsForErrors = require('./.github/workflows/js/check-jobs-for-errors.js'); | |
const jobs = ${{ toJSON(needs) }}; | |
checkJobsForErrors({ core, jobs }); |