Skip to content

Commit

Permalink
Run CI on this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreeman committed Nov 14, 2023
1 parent 0fd69f6 commit e7cb364
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
# filtering branches here prevents duplicate builds from pull_request and push
branches:
- main
- write-and-await-output
# always run CI for tags
tags:
- '*'
Expand Down Expand Up @@ -126,6 +127,9 @@ jobs:
run: yarn add --dev -W typescript@next
- name: Build
run: yarn build
- uses: lhotari/action-upterm@v1
with:
limit-access-to-actor: true
- name: Run Tests
uses: coactions/setup-xvfb@v1
with:
Expand Down
5 changes: 4 additions & 1 deletion packages/core/__tests__/cli/custom-extensions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ describe('CLI: custom extensions', () => {
"Cannot find module './other' or its corresponding type declarations."
);

await watch.writeAndAwaitOutput('other.gjs', 'export const foo = 123;', 'Found 0 errors.');
await watch.writeAndAwaitOutput('other.gjs', 'export const foo = 123;', 'Found 0 errors.', {
timeout: 45_000,
touchFileTimeout: 20_000,
});
await watch.terminate();
});

Expand Down

0 comments on commit e7cb364

Please sign in to comment.