Files
humans.txt/.github/workflows/ci.yml
2024-04-12 15:03:06 -04:00

16 lines
232 B
YAML

name: CI 🔨
on:
pull_request:
branches: ["main"]
push:
branches: ["main"]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm install --production
- run: "./test.sh"