🐛 Use tag versions to select CLI version on welcome screen #178
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: CI Checks | |
on: pull_request | |
jobs: | |
format_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check formatting with Prettier | |
uses: creyD/[email protected] | |
with: | |
prettier_options: --check **/*.{js,ts,jsx,tsx,md,css,html} | |
prettier_version: 2.8.8 | |
eslint_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm ci | |
- run: npm run lint '**/*.{js,ts,js,ts}' |