Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 49 additions & 46 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,21 @@ jobs:
- run: yarn lint


type-tests:
name: "Type Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
# tracking for re-enablement here: https://github.com/typed-ember/glint/issues/728
# type-tests:
# name: "Type Tests"
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 18
# cache: yarn

- run: yarn install --frozen-lockfile
- run: "yarn build"
- run: "yarn workspaces run test:typecheck"
- run: "yarn workspaces run test:tsc"
# - run: yarn install --frozen-lockfile
# - run: "yarn build"
# - run: "yarn workspaces run test:typecheck"
# - run: "yarn workspaces run test:tsc"

test:
name: Test
Expand Down Expand Up @@ -100,37 +101,39 @@ jobs:
- name: Test @glint/scripts
run: yarn workspace @glint/scripts test

test-floating-deps:
name: Test Floating Dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- run: yarn install --no-lockfile
- name: Build
run: yarn build
- name: Run Tests
uses: coactions/setup-xvfb@v1
with:
run: yarn test
# tracking for re-enablement here: https://github.com/typed-ember/glint/issues/728
# test-floating-deps:
# name: Test Floating Dependencies
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 18
# cache: yarn
# - run: yarn install --no-lockfile
# - name: Build
# run: yarn build
# - name: Run Tests
# uses: coactions/setup-xvfb@v1
# with:
# run: yarn test

test-ts-nightly:
name: Test TypeScript Nightly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn add --dev -W typescript@next
- name: Build
run: yarn build
- name: Run Tests
uses: coactions/setup-xvfb@v1
with:
run: yarn test
# tracking for re-enablement here: https://github.com/typed-ember/glint/issues/728
# test-ts-nightly:
# name: Test TypeScript Nightly
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 18
# cache: yarn
# - run: yarn install --frozen-lockfile
# - run: yarn add --dev -W typescript@next
# - name: Build
# run: yarn build
# - name: Run Tests
# uses: coactions/setup-xvfb@v1
# with:
# run: yarn test
Loading