Skip to content

fix: first install dependency #30

fix: first install dependency

fix: first install dependency #30

Workflow file for this run

name: PR
# Run on all pull requests
on:
pull_request: {}
# 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-20.04
# 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
- uses: actions/checkout@v2
# Build image
- name: Build image
run: docker build -t pullrequestimage .
# run the image (but supply the TESTNAME in stead of MASTERNAME, so the
# app ends up in a different place.
- name: execute
run: >
docker run
-e SHINY_ACC_NAME=${{vars.SHINY_ACC_NAME}}
-e TOKEN=${{secrets.TOKEN}}
-e SECRET=${{secrets.SECRET}}
-e APP_NAME=${{vars.TEST_NAME}}
pullrequestimage