fix(rules): set back to fallback-deny-rule and drop fallback-deny-policy #252
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: Transform all data | |
run: npm run transform | |
- name: Import all data | |
run: npm run import |