Merge branch 'github:main' into main #9
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: GH Migration Analyzer CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install modules | |
run: yarn | |
- name: Run ESLint | |
run: npm install eslint-config-prettier eslint-plugin-prettier && npx eslint . | |
- name: Run tests | |
run: yarn test |