File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636 - run : yarn install --no-lockfile
3737 - run : yarn test:ember
3838
39+ types-scenarios :
40+ name : " Types: ${{ matrix.tsVersion }}"
41+ runs-on : ubuntu-latest
42+ needs : test
43+
44+ strategy :
45+ matrix :
46+ tsVersion :
47+ - 4.4
48+ - 4.6
49+ - 4.8
50+ - 5.0
51+ - 5.1
52+ steps :
53+ - uses : actions/checkout@v2
54+ - uses : volta-cli/action@v1
55+ - name : install dependencies
56+ run : yarn install --frozen-lockfile
57+ - name : Swap TS Version
58+ run : yarn add --dev typescript@{{ matrix.tsVersion }}
59+ - name : Check Types
60+ run : |
61+ tsc -v
62+ yarn test:types
63+
3964 try-scenarios :
4065 name : " Try: ${{ matrix.ember-try-scenario }}"
4166
89114 - name : publish to npm
90115 run : npm publish
91116 env :
92- NODE_AUTH_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
117+ NODE_AUTH_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
You can’t perform that action at this time.
0 commit comments