Skip to content

fix docker file

fix docker file #21

name: Producer Tests
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
env:
SHOPIFY_ACCESS_TOKEN: 123
SHOPIFY_API_KEY: 123
SHOPIFY_API_SECRET: 123
HOST: somehost
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn
- run: cd web && yarn
- run: yarn test