Skip to content

Bye storybook

Bye storybook #96

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.11.x ]
steps:
- name: Check out Git repository # clone the repo to local ci workspace
uses: actions/checkout@v3.5.3
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }

Check failure on line 21 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 21, Col: 25): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT"
- name: Restore node_modules from cache
uses: actions/cache@v1.2.1
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies # install project deps with --frozen-lockfile to make sure we will have the same packages version ( very recommended on running yarn install on ci)
run: yarn install --frozen-lockfile
- name: jest
run: yarn test:ci