Skip to content

Commit

Permalink
Create static.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jzllove9 authored Sep 9, 2024
1 parent 166ffff commit 3a41447
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
push:
branches:
- main

pull_request:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set node
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Install dependencies
run: npm install

- name: Lint Fix
run: npm run lint:fix

- name: Lint
run: npm run lint

- name: Build
run: npm run build

0 comments on commit 3a41447

Please sign in to comment.