-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from Omegapoint/feature/NewTesterTest3
refactor project
- Loading branch information
Showing
3 changed files
with
18 additions
and
37 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,26 @@ | ||
name: Test | ||
name: test action | ||
run-name: ${{ github.actor }} is running tests | ||
permissions: | ||
contents: read | ||
pages: read | ||
id-token: write | ||
|
||
on: [push] | ||
on: [push, workflow_dispatch] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
- name: Install | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Build tests | ||
run: npm run buildTests | ||
- name: Build and run tests | ||
run: npm run test | ||
- name: Build Action | ||
run: npm run build | ||
- name: 'Run Compliance State Action' | ||
uses: ./ | ||
with: | ||
cydigConfigPath: ${{ github.workspace }}/src/cydigconfig.json | ||
PAT-token: ${{ secrets.MY_GITHUB_PAT}} |
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