.github/workflows: add CI to the project (lint and tests) #7
Workflow file for this run
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.16.0 | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
with: | |
path: ./ts/node_modules | |
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: node_modules- | |
- name: Install | |
run: npm install | |
working-directory: ./ts | |
- name: Lint check | |
run: npm run fmt-check | |
working-directory: ./ts | |
integration-tests: | |
strategy: | |
matrix: | |
dialect: [ mysql, postgres, sqlite ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.16.0 | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
with: | |
path: ./ts/node_modules | |
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: node_modules- | |
- name: Install | |
run: npm install | |
working-directory: ./ts | |
- uses: ariga/setup-atlas@master | |
- name: Run Test as Standalone | |
working-directory: ./ts/testdata | |
run: | | |
atlas migrate diff --env typeorm --var dialect=${{ matrix.dialect }} | |
- name: Verify migrations generated | |
run: | | |
status=$(git status --porcelain) | |
if [ -n "$status" ]; then | |
echo "you need to run 'atlas migrate diff --env typeorm' and commit the changes" | |
echo "$status" | |
git --no-pager diff | |
exit 1 | |
fi |