Spaces:
Running
on
Zero
Running
on
Zero
File size: 354 Bytes
f669ed4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
name: CI
on:
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Deploy to Google Apps Script
run: npm run deploy |