Remove magda scripts and replace with @magda/docker-utils and @magda/… #33
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: Main CI Workflow | |
on: push | |
env: | |
REPO_NAME: magda-csv-connector | |
jobs: | |
build-test-docker: | |
name: Build, Test & Push to Docker | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 10 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 10 | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test | |
- name: Setup Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.2.0 | |
- run: yarn helm-lint | |
- name: Login to GitHub Package Repository | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_ACCESS_TOKEN }} | |
run: docker login docker.pkg.github.com -u magdabot -p ${GH_TOKEN} | |
- name: Build Docker Image & Push | |
run: yarn docker-build-prod --repository=docker.pkg.github.com/magda-io/${REPO_NAME} --name=${REPO_NAME} --version=${GITHUB_SHA} | |
build-test-node-8: | |
name: Build, Test Only with Node 12 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 12 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test |