Skip to content

Commit

Permalink
Test actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wienans committed Oct 19, 2024
1 parent 80da6cf commit 7989767
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
container:
image: node:20
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: cd client
- run: npm install --loglevel verbose
- run: npm run lint
build:
runs-on: ubuntu-latest
container:
image: node:20
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: cd client
- run: npm install --loglevel verbose
- run: npm run build
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,14 @@ into the container and
npm run build
```

then again

```bash
docker exec -it quadcoach-backend /bin/bash
```

and

```bash
npm run build
```
Expand Down

0 comments on commit 7989767

Please sign in to comment.