Skip to content

Update readme.md

Update readme.md #5

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
buildTestDeploy:
name: buildTestDeploy
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: install deps
run: yarn install
- name: bundle
run: yarn bundle
- name: test
run: yarn test
# - name: terraform apply
# working-directory: infra/dev
# env:
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# run: |
# terraform init
# terraform apply -auto-approve