Skip to content

chore(migration): use token from app - fixed deps - updated node vers… #10

chore(migration): use token from app - fixed deps - updated node vers…

chore(migration): use token from app - fixed deps - updated node vers… #10

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: Test on node ${{ matrix.node_version }}
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
node_version: '>=18'

Check failure on line 12 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 12, Col: 23): Unexpected value '>=18'
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- name: npm install, build and test
env:
CONTENTFUL_INTEGRATION_MANAGEMENT_TOKEN: ${{ secrets.CONTENTFUL_MANAGEMENT_ACCESS_TOKEN }}
CONTENTFUL_INTEGRATION_SOURCE_SPACE: ${{ secrets.CONTENTFUL_SPACE_ID }}
run: |
npm install
npm run test:ci