Skip to content

Save Created Google Forms and Send to Students #99

Save Created Google Forms and Send to Students

Save Created Google Forms and Send to Students #99

Workflow file for this run

name: CICD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Set up Docker Compose Plugin
uses: KengoTODA/actions-setup-docker-compose@v1
with:
version: '2.14.2' # the full version of `docker-compose` command
- name: Build and Test
run: |
docker compose up --build -d
docker compose down