Skip to content

Commit 69e203a

Browse files
changes
1 parent f3713ca commit 69e203a

13 files changed

+1370
-767
lines changed
File renamed without changes.

.github/workflows/api-tests.yml

Whitespace-only changes.

.github/workflows/frontend.yml renamed to .github/workflows/client-approval.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ jobs:
3737
- name: Recreate .env from secret
3838
run: echo "${{ secrets.PROD_ENV_FILE }}" > .env
3939
- run: npm ci
40-
- name: Run tests
41-
run: npm test
4240
- run: npm run build
4341

4442

.github/workflows/client-tests.yml

Whitespace-only changes.

.github/workflows/issues.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Issues
2+
3+
on:
4+
issues:
5+
types: [labeled]
6+
7+
permissions:
8+
issues: write
9+
10+
jobs:
11+
help-wanted:
12+
13+
uses: laravel/.github/.github/workflows/issues.yml@main

.github/workflows/pull-requests.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Pull Requests
2+
3+
on:
4+
pull_request_target:
5+
types: [opened]
6+
7+
permissions:
8+
pull-requests: write
9+
10+
jobs:
11+
uneditable:
12+
uses: laravel/.github/.github/workflows/pull-requests.yml@main

.github/workflows/tests.yml

Whitespace-only changes.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Update Changelog
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
permissions: {}
8+
9+
jobs:
10+
update:
11+
permissions:
12+
contents: write
13+
uses: laravel/.github/.github/workflows/update-changelog.yml@main

README.Docker.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,7 @@ Consult Docker's [getting started](https://docs.docker.com/go/get-started-sharin
1919
docs for more detail on building and pushing.
2020

2121
### References
22-
* [Docker's Node.js guide](https://docs.docker.com/language/nodejs/)
22+
* [Docker's Node.js guide](https://docs.docker.com/language/nodejs/)
23+
24+
### To Run Rabbit MQ
25+
``docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:4.1.3-management``

0 commit comments

Comments
 (0)