Files
the-biergarten-app/.github/workflows/github-actions-demo.yml
2023-08-12 23:40:19 -04:00

20 lines
306 B
YAML

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci