Files
dotenv-types/.gitea/workflows/ci.yml
7000pctAUTO 85967917b5
Some checks failed
CI / test (push) Failing after 5s
fix: remove incorrect working-directory from CI workflow
2026-01-31 20:36:09 +00:00

33 lines
488 B
YAML

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Run tests
run: npm test
- name: Build
run: npm run build