Update CI.yml #6
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
node-version: 18 | |
# Run npm start command | |
- name: Start application | |
run: npm install | |
# Run npm test command | |
- name: Run tests | |
run: npm test | |
# Runs a single command using the runners shell | |
- name: Print a message | |
run: echo Hello, world! | |
# Runs a set of commands using the runners shell | |
- name: Print multi-line message | |
run: | | |
echo Add other actions to build, | |
echo test, and deploy your project. | |
# Deployment job | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [build] # Waits for the 'build' job to complete before starting this job | |
steps: | |
# Deploy to production | |
- name: Deploy to production | |
uses: actions/checkout@v2 | |
# Use render-deploy-action for deployment | |
- name: Render Deploy Action | |
uses: johnbeynon/[email protected] | |
with: | |
service-id: srv-co8egfv109ks73ed9fv0?key=zOkL3z42FtA | |
api-key: rnd_ztF9piodvNQ3byZ1AZiy9KUJFu9l | |
wait-for-success: true |