25 lines
474 B
YAML
Raw Permalink Normal View History

2025-02-15 15:03:44 -05:00
name: 'CI'
on:
push:
branches:
- master
# Jobs
jobs:
# Build Project
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
# Dependencies
- name: Install Dependencies
run: npm ci
2025-02-22 00:17:09 -05:00
# Test
2025-02-15 15:03:44 -05:00
- name: Build
2025-02-22 00:17:09 -05:00
run: npm test
2025-02-15 15:03:44 -05:00
# Lint
- name: Lint
run: npm run lint