Show human readable reset datetime (#8) #21
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: Typing | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
env: | |
DEFAULT_NODE: 20 | |
jobs: | |
typescript: | |
name: Typescript | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out code from GitHub | |
uses: actions/[email protected] | |
- name: 🏗 Set up Node.js ${{ env.DEFAULT_NODE }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ env.DEFAULT_NODE }} | |
- name: 🏗 Install dependencies | |
run: npm ci | |
- name: 🚀 Run Typescript | |
run: npm run typing:check |