Skip to content

Test new workflow items #14

Test new workflow items

Test new workflow items #14

Workflow file for this run

name: build-express
on:
pull_request:
paths:
- 'packages/express/**'
- '.github/workflows/build-express.yml'
jobs:
build-express-app:
runs-on: ubuntu-latest # todo: use whatever is on the DO droplet
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- name: Check out repository code
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '12'
- run: npm install -g [email protected]
- run: npm install -g [email protected] # 4.0.0 ?
#- run: npm install -g [email protected]
- run: lerna bootstrap
- name: Build
run: |
printf "${{ secrets.VUE_ENV }}" > ./packages/vue/.env.production
cd ./packages/express
yarn build
# todo: add some tests to run haha