Skip to content

feat: restructured input params #178

feat: restructured input params

feat: restructured input params #178

Workflow file for this run

# `dist/index.js` is a special file in Actions.
# When you reference an action with `uses:` in a workflow,
# `index.js` is the code that will run.
# For our project, we generate this file through a build process from other source files.
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
name: Check dist/
on:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js 18.x
uses: actions/[email protected]
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Rebuild the dist/ directory
run: |
yarn build
yarn package