Skip to content
name: Run macro and script tests
on: [push]
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
RUNNING_IN_CI: true
jobs:
run-macro-and-script-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn install
- name: create env file
run: |

Check failure on line 22 in .github/workflows/macro-and-script-tests.yml

View workflow run for this annotation

GitHub Actions / Run macro and script tests

Invalid workflow file

The workflow is not valid. .github/workflows/macro-and-script-tests.yml (Line: 22, Col: 20): Unrecognized named-value: 'RUNNING_IN_CI'. Located at position 1 within expression: RUNNING_IN_CI
touch .env
echo RUNNING_IN_CI=${{ RUNNING_IN_CI }} >> .env
- name: Clear jest cache
run: yarn test:clear-cache
- name: Run macro and script tests
run: yarn test