Skip to content

Update readme custom migrate and update dependencies #11

Update readme custom migrate and update dependencies

Update readme custom migrate and update dependencies #11

Workflow file for this run

name: Serverless Migrate Plugin CI
on:
push:
branches: [ master, main ]
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies for CI
run: npm ci
- name: Link package
run: |
cd ${GITHUB_WORKSPACE}/example
npm link serverless-migrate-plugin
- name: Build and test
run: |
cd ${GITHUB_WORKSPACE}/example
npm run create
npm run up
npm run down
npm run list
echo It is all good man!
cd -