feat(shop): add shop policies #168
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '20.8.0' | |
- name: Setup System | |
uses: restorecommerce/setup-system-action@v1 | |
with: | |
backing-only: false | |
- name: Install Dependencies | |
run: npm ci | |
- name: Extract Bootstrap API-KEY | |
run: npm run env:token | |
- name: Import all | |
run: npm run import |