Nightly TypeScript Run #1212
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly TypeScript Run | |
# run the typescript@next Ember Try job... | |
jobs: | |
ts-next: | |
name: typescript@next | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Node | |
uses: volta-cli/action@v4 | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- run: yarn add -D typescript@next | |
working-directory: ember-async-data | |
- run: yarn tsc --noEmit | |
working-directory: ember-async-data | |
- run: yarn tsc --noEmit --project type-tests | |
working-directory: ember-async-data | |
# ...nightly at midnight | |
on: | |
schedule: | |
- cron: 0 0 * * * |