Skip to content

feat: add glamp detail #23

feat: add glamp detail

feat: add glamp detail #23

name: learn-github-actions
on: [push]
jobs:
lint-format-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm install
- run: npm run lint
- run: npm run dev &
- run: |
echo "I'm waiting for server..."
while ! curl --output /dev/null --silent --head --fail http://localhost:3000; do
printf '.'
sleep 5
done
- run: npm run codegen
- run: npm run build