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: AreTheTypesWrong scan | |
on: | |
push: | |
# Publish `main` as Docker `latest` image. | |
branches: | |
- main | |
# Publish `v1.2.3` tags as releases. | |
tags: | |
- v* | |
pull_request: | |
branches: | |
- main | |
jobs: | |
scanning: | |
name: AreTheTypesWrong scan | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Installing AreTheTypesWrong Library | |
run: npm i -g @arethetypeswrong/cli | |
- name: Use Node.js ${{ env.NODEJS_VERSION }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ env.NODEJS_VERSION }} | |
- uses: actions/[email protected] | |
- id: yarn-cache | |
name: Restore Yarn Cache | |
uses: actions/[email protected] | |
with: | |
key: ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | |
path: ./.yarn/ | |
restore-keys: | | |
${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }} | |
- run: ./tools/ci.sh | |
- name: Running AreTheTypesWrong scan | |
run: yarn run are-the-types-wrong |