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 e0d091f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"eslint": "^8.27.0",
"prettier": "^2.1.1",
"release-it": "^15.5.0",
"typescript": "~4.8.0"
"typescript": "^5.4.0-dev.20231114"
},
"resolutions:notes": {
"@types/yargs": "Locking temporarily to avoid an issue with the ESM types in 17.0.14; see DT#63373",
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
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14704,10 +14704,10 @@ typescript-memoize@^1.0.0-alpha.3, typescript-memoize@^1.0.1:
resolved "https://registry.yarnpkg.com/typescript-memoize/-/typescript-memoize-1.1.1.tgz#02737495d5df6ebf72c07ba0d002e8f4cf5ccfa0"
integrity sha512-GQ90TcKpIH4XxYTI2F98yEQYZgjNMOGPpOgdjIBhaLaWji5HPWlRnZ4AeA1hfBxtY7bCGDJsqDDHk/KaHOl5bA==

typescript@~4.8.0:
version "4.8.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"
integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==
typescript@^5.4.0-dev.20231114:
version "5.4.0-dev.20231114"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.0-dev.20231114.tgz#8371de6d968a6da7ce3156997fee9b064d67cdfb"
integrity sha512-z7rH8Vy4KWJyzNUaFt1HMzwYNRUmy2HMN98eufjvqbhmS3WPoQF89/UgonRmYf1vAP/69z0PytuV9hBMHNkaDg==

uc.micro@^1.0.1, uc.micro@^1.0.5:
version "1.0.6"
Expand Down

0 comments on commit e0d091f

Please sign in to comment.