Skip to content

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

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

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

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: [16, 18, 20, 22]
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