Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sgort committed Feb 19, 2024
2 parents 7401d40 + 3b04e77 commit 6be01e4
Show file tree
Hide file tree
Showing 151 changed files with 29,190 additions and 184,445 deletions.
182 changes: 0 additions & 182 deletions .docker/wait-for

This file was deleted.

2 changes: 0 additions & 2 deletions .env.example

This file was deleted.

12 changes: 8 additions & 4 deletions .github/actions/run-workspace-script/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ runs:
using: 'composite'
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.9.0
run_install: false
- uses: actions/setup-node@v3
with:
cache: yarn
node-version: 18
- run: yarn
cache: pnpm
node-version: 20.11
- run: pnpm install
shell: bash
- run: yarn workspace ${{ inputs.workspace }} run ${{ inputs.script }}
- run: pnpm --filter=${{ inputs.workspace }} ${{ inputs.script }}
shell: bash
11 changes: 7 additions & 4 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.9.0
run_install: true
- uses: actions/setup-node@v3
with:
cache: yarn
node-version: 18
- run: yarn
cache: pnpm
node-version: 20.11
- uses: changesets/action@v1
with:
createGithubReleases: true
publish: yarn changeset publish
publish: pnpm changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 4 additions & 2 deletions .github/workflows/validate-web-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ jobs:
lint:
runs-on: ubuntu-20.04
steps:
- uses: MinBZK/regels.overheid.nl/.github/actions/run-workspace-script@main
- uses: actions/checkout@v3
- uses: ./.github/actions/run-workspace-script
with:
workspace: 'web'
script: lint
stylecheck:
runs-on: ubuntu-20.04
steps:
- uses: MinBZK/regels.overheid.nl/.github/actions/run-workspace-script@main
- uses: actions/checkout@v3
- uses: ./.github/actions/run-workspace-script
with:
workspace: 'web'
script: stylecheck
Expand Down
Loading

0 comments on commit 6be01e4

Please sign in to comment.