Skip to content

Commit

Permalink
chore(test): test github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
prb28 committed Nov 19, 2023
1 parent 0568664 commit fe21fb6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [master]
branches: [master, test_github_actions]
pull_request:
branches: [master]

Expand Down
2 changes: 1 addition & 1 deletion src/test/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import path = require('path');
import { VASMCompiler } from '../vasm';
import { VLINKLinker } from '../vlink';

describe('WinUAE Integration test', () => {
describe.only('WinUAE Integration test', () => {
const PROJECT_ROOT = Path.join(__dirname, '..', '..').replace(/\\+/g, '/');
const DEBUG_ADAPTER = Path.join(PROJECT_ROOT, 'out', 'debugAdapter.js').replace(/\\+/g, '/');
const launchArgs = <LaunchRequestArguments>{
Expand Down
2 changes: 1 addition & 1 deletion src/test/integrationfsuae.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import path = require('path');
import { VASMCompiler } from '../vasm';
import { VLINKLinker } from '../vlink';

describe('FS-UAE Integration test', () => {
describe.only('FS-UAE Integration test', () => {
const PROJECT_ROOT = Path.join(__dirname, '..', '..').replace(/\\+/g, '/');
const DEBUG_ADAPTER = Path.join(PROJECT_ROOT, 'out', 'debugAdapter.js').replace(/\\+/g, '/');
const launchArgs = <LaunchRequestArguments>{
Expand Down

0 comments on commit fe21fb6

Please sign in to comment.