Skip to content

Port to TypeScript, fix a few bugs #17

Port to TypeScript, fix a few bugs

Port to TypeScript, fix a few bugs #17

Workflow file for this run

name: Build commit
on:
- push
- workflow_dispatch
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Cache
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: FreshRSS-Checker-${{github.sha}}.zip
path: public/*
if-no-files-found: error