docs: update logging type enum #11
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: | |
pull_request: | |
jobs: | |
test: | |
name: Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Install Dependencies | |
run: npm install --frozen-lockfile --prefer-offline | |
- name: Build workspace packages | |
run: npm run build | |
- name: Branch Information | |
run: | | |
echo "Git Branch: $(git branch)" | |
echo "Git Log: $(git log --oneline)" | |
echo "HEAD SHA: $(git rev-parse HEAD)" | |
echo "HEAD^1 SHA: $(git rev-parse HEAD^1)" | |
echo "Git Diff: $(git diff HEAD^1)" | |
- name: Run Package(s) Tests | |
run: | | |
npm run test |