add way to load entitles as stand alone (#3) #14
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 -c "file://atlas-standalone.hcl" --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 | |
- name: Run Test as ts Script | |
working-directory: ./ts/testdata | |
run: | | |
atlas migrate diff --env typeorm -c "file://atlas-script.hcl" --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 |