-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Runs tests and ensures code can compile Fixes #5
- Loading branch information
1 parent
edac838
commit d2cfc4f
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: "Test" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
run_tests: | ||
name: Verify PR - Tests | ||
runs-on: self-hosted | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Read .nvmrc | ||
run: echo "##[set-output name=NODE_VERSION;]$(cat package.json | jq .engines.node | sed -e 's/"//g' | sed -e 's/>=//g')" | ||
id: nvm | ||
- name: Save version | ||
run: echo "latest" > version | ||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "${{ steps.nvm.outputs.NODE_VERSION }}" | ||
- name: Install deps | ||
run: yarn | ||
- name: Prepare | ||
run: yarn nx run-many --target=prepare --parallel --all | ||
env: | ||
ONEPASSWORD_TOKEN: ${{ secrets.ONEPASSWORD_TOKEN }} | ||
ONEPASSWORD_SERVER_URL: ${{ secrets.ONEPASSWORD_SERVER_URL }} | ||
ONEPASSWORD_VAULT_ID: ${{ secrets.ONEPASSWORD_VAULT_ID }} | ||
- name: Run all unit tests | ||
run: yarn nx run-many --target=test/unit --all --parallel | ||
|
||
build: | ||
name: Verify PR - Buildable | ||
runs-on: self-hosted | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Read .nvmrc | ||
run: echo "##[set-output name=NODE_VERSION;]$(cat package.json | jq .engines.node | sed -e 's/"//g' | sed -e 's/>=//g')" | ||
id: nvm | ||
- name: Save version | ||
run: echo "latest" > version | ||
- name: Use Node.js (.nvmrc) | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "${{ steps.nvm.outputs.NODE_VERSION }}" | ||
- name: Install deps | ||
run: yarn | ||
- name: Prepare | ||
run: yarn nx run-many --target=prepare --parallel --all | ||
env: | ||
ONEPASSWORD_TOKEN: ${{ secrets.ONEPASSWORD_TOKEN }} | ||
ONEPASSWORD_SERVER_URL: ${{ secrets.ONEPASSWORD_SERVER_URL }} | ||
ONEPASSWORD_VAULT_ID: ${{ secrets.ONEPASSWORD_VAULT_ID }} | ||
- name: Compile affected apps | ||
run: yarn nx affected --target=compile --parallel --base=HEAD~ --head=HEAD --verbose | ||
env: | ||
ONEPASSWORD_TOKEN: ${{ secrets.ONEPASSWORD_TOKEN }} | ||
ONEPASSWORD_SERVER_URL: ${{ secrets.ONEPASSWORD_SERVER_URL }} | ||
ONEPASSWORD_VAULT_ID: ${{ secrets.ONEPASSWORD_VAULT_ID }} | ||
NODE_ENV: production |
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