add dist #126
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
# unit tests | |
units: | |
name: Test Javascript | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Node.js 16.x | |
uses: actions/[email protected] | |
with: | |
node-version: 16.x | |
cache: npm | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run Lint Test | |
run: npm run lint | |
- name: Run tests | |
run: npm test | |
e2e: | |
name: Test fslabscli Github Action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: Install Updatecli | |
uses: ./ | |
- name: Test local action without install-only | |
run: fslabscli generate-release-workflow --output .github/workflows/release.yml |