We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea2ccf1 commit f7d4af4Copy full SHA for f7d4af4
.github/workflows/frontend.yml
@@ -21,8 +21,10 @@ jobs:
21
steps:
22
- name: Code Checkout
23
uses: actions/checkout@v4
24
- - name: Setup Yarn Berry
25
- uses: threeal/setup-yarn-action@v2.0.0
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v2
26
+ with:
27
+ node-version: ${{ matrix.node-version }}
28
- name: Install dependencies
29
run: |
30
if [ -f yarn.lock ]; then
docker-compose.yml
@@ -0,0 +1,6 @@
1
+services:
2
+ database:
3
+ image: mariadb:latest
4
+ restarted: unless-stopped
5
+ volumes:
6
+ - ./dockerfiles/mysql/data
0 commit comments