action.yml 335 B

12345678910111213141516
  1. name: Setup
  2. description: Setup the environment for the other jobs and steps
  3. runs:
  4. using: composite
  5. steps:
  6. - name: Setup Node.js
  7. uses: actions/setup-node@v4
  8. - name: Install
  9. run: npm install
  10. shell: bash
  11. - name: Compile
  12. run: npm run compile
  13. shell: bash