8000 ci: delete .github/workflows/release.yml · enymawse/stasharr@d5d2fd8 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ci: delete .github/workflows/release.yml #11

ci: delete .github/workflows/release.yml

ci: delete .github/workflows/release.yml #11

Workflow file for this run

name: Lint and Build
on:
push:
pull_request:
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run Linter
run: npm run lint
- name: Build Project
run: npm run build
0