Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliastik committed Jan 9, 2024
1 parent 4f207d8 commit 2d8c202
Show file tree
Hide file tree
Showing 4 changed files with 140 additions and 153 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Install Dependencies
run: npm install

- name: Build and Lint
run: npm run build
Loading

0 comments on commit 2d8c202

Please sign in to comment.