NEXT_RSC_ERR_CLIENT_METADATA_EXPORT: metadata on Github Actions
Unanswered
ttalgi posted this in #help-forum
ttalgiOP
Basically what the title says. Here's my yml snippet:
jobs:
simple_deployment_pipeline:
name: Lint and install dependencies
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies on frontend
working-directory: ./
run: npm install
- name: Run jest tests
run: npm run test:ci