disable lint #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: (WIP) CI - API - Build and deploy | |
on: | |
push: | |
paths: | |
- "api/**" | |
- "packages/**" | |
- ".github/workflows/wip-deploy-ci-api.yml" # TODO: remove | |
branches: # TODO: remove me | |
- 3577-app | |
env: | |
ENVIRONMENT: ci | |
APP_NAME: api | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18.20" | |
- uses: actions/cache@v4 | |
id: cache-npm | |
with: | |
path: | | |
node_modules | |
api/node_modules | |
packages/ds/node_modules | |
packages/lib/node_modules | |
key: ${{ runner.os }}-nodemodules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nodemodules- | |
- name: Install packages | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: Build lib | |
working-directory: packages/lib | |
run: npm run build | |
# Typescript check | |
- name: Check types | |
working-directory: api | |
run: npm run check-types | |
# ESLint check | |
# - name: Lint code | |
# working-directory: api | |
# run: npm run lint | |
- name: Start MongoDB 7.0 | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: "7.0" | |
- name: Test and Send coverage | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
CI: true | |
with: | |
workingDirectory: api | |
coverageCommand: npm run coverage | |
deploy: | |
needs: [test] | |
runs-on: ubuntu-latest | |
outputs: | |
release: ${{ steps.release.outputs.release }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18.20" | |
- name: Get release name | |
id: release | |
working-directory: devops/scripts | |
run: | | |
release=$(node get-image-tag.js ${{ github.event.after }}) | |
echo "release: $release" | |
echo "release=$release" >> $GITHUB_OUTPUT | |
- name: Docker Build & Publish | |
working-directory: devops/scripts | |
env: | |
SCW_SECRET_KEY: ${{ secrets.SCW_CI_DEPLOY_SECRET_KEY }} | |
SCW_ORGANIZATION_ID: ${{ secrets.SCW_ORGANIZATION_ID }} | |
VITE_RELEASE: ${{ steps.release.outputs.release }} | |
run: | | |
node ./build-application-docker.js $ENVIRONMENT $APP_NAME --push | |
# - name: Deploy on Scaleway | |
# working-directory: devops/scripts | |
# env: | |
# SCW_SECRET_KEY: ${{ secrets.SCW_CI_DEPLOY_SECRET_KEY }} | |
# SCW_ORGANIZATION_ID: ${{ secrets.SCW_ORGANIZATION_ID }} | |
# run: | | |
# node ./deploy-scaleway.js $ENVIRONMENT $APP_NAME ${{ steps.release.outputs.release }} |