build(deps): Bump release-drafter/release-drafter from 5 to 6 #29
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 Updatecli Github Action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: Install Releasepost | |
uses: ./ | |
- name: Test local action without install-only | |
run: releasepost --config testdata/releasepost.yaml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |