Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #10 from bitcobblers/br_optimized_builds
Browse files Browse the repository at this point in the history
Enabled self-hosted build runners.
  • Loading branch information
mvastarelli committed Feb 5, 2022
2 parents 74cbf42 + 7ed8382 commit 28179b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
release:
runs-on: windows-latest
runs-on: self-hosted

steps:
- name: Check out Git Repository
Expand All @@ -14,7 +14,6 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: 16
cache: 'npm'

- name: Install Dependencies
run: |
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@
"release/app/node_modules"
],
"testPathIgnorePatterns": [
"release/app/dist"
"./node_modules/",
"./release/"
],
"setupFiles": [
"./.erb/scripts/check-build-exists.ts"
Expand Down
2 changes: 1 addition & 1 deletion src/main/modules/SharedModule.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Handlers from './handlers';
import Handlers from './Handlers';

export default interface SharedModule {
name: string;
Expand Down

0 comments on commit 28179b3

Please sign in to comment.