Skip to content

feat: create AdonisJS framework plugin & Lucid adapter #1

feat: create AdonisJS framework plugin & Lucid adapter

feat: create AdonisJS framework plugin & Lucid adapter #1

Workflow file for this run

name: CI/CD
on: push
env:
SLACK_WEBHOOK: ${{ secrets.ADMIN_SLACK_WEBHOOK }}
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
jobs:
test-and-publish:

Check failure on line 10 in .github/workflows/push.yml

View workflow run for this annotation

GitHub Actions / CI/CD

Invalid workflow file

The workflow is not valid. .github/workflows/push.yml (Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
name: Test & Publish
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: actions/setup-node@v2
with:
node-version: '20'
- uses: actions/cache@v2
id: yarn-cache
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node_modules-
- name: Install
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install
- name: Build
run: yarn build
- name: Typecheck
run: yarn typecheck
- name: Release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.ADMIN_SLACK_WEBHOOK }}
run: yarn release