Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

fix origin

fix origin #7

Workflow file for this run

name: Build project
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present