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

Enabled self-hosted build runners. #10

Merged
merged 7 commits into from
Feb 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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