Skip to content

Remove input from workflow_dispatch trigger #32

Remove input from workflow_dispatch trigger

Remove input from workflow_dispatch trigger #32

Workflow file for this run

name: CI
on:
push:
branches: [master]
workflow_dispatch:
permissions:
contents: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
deploy:
needs:
- test
uses: ./.github/workflows/deploy.yml
with:
ref: ${{ github.sha }}
secrets: inherit