Skip to content

Commit

Permalink
New build
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitenite committed Jul 11, 2024
1 parent 0c05983 commit 123168e
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,36 @@
name: Build/release

on: push
name: Build

on:
push:
branches: [ci]
paths-ignore:
- "**.md"
- "**.spec.js"
- ".idea"
- ".vscode"
- ".dockerignore"
- "Dockerfile"
- ".gitignore"
- ".github/**"
- "!.github/workflows/build.yml"

jobs:
release:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- name: Check out Git repository
- name: Checkout Code
uses: actions/checkout@v3

- name: Install Node.js, NPM and Yarn
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- name: Navigate to directory
run: cd app

- name: Install Dependencies
run: npm install

Expand All @@ -35,4 +44,4 @@ jobs:
with:
name: release_on_${{ matrix. os }}
path: release/
retention-days: 5
retention-days: 5

0 comments on commit 123168e

Please sign in to comment.