This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
-
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.
feat(QR scanner) product implementation
- fix some bugs - error notification added - add rxb scripts to repository
- Loading branch information
1 parent
3c71124
commit 423e02c
Showing
2 changed files
with
28 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: "Run tests" | ||
on: [pull_request] | ||
jobs: | ||
test: | ||
runs-on: [self-hosted, cere-io-large-workers] | ||
steps: | ||
- name: "Checkout" | ||
uses: "actions/checkout@v1" | ||
- name: Read .nvmrc | ||
id: nvmrc | ||
run: echo "##[set-output name=NODE_VERSION;]$(cat .nvmrc)" | ||
- name: "Set up NodeJSs" | ||
uses: "actions/setup-node@v1" | ||
with: | ||
node-version: "${{ steps.nvmrc.outputs.NODE_VERSION }}" | ||
- name: "Install node modules" | ||
run: npm ci | ||
env: | ||
NPM_TOKEN: ${{secrets.NPM_TOKEN_READ}} | ||
- name: "Check ts build" | ||
run: npm run build | ||
env: | ||
NPM_TOKEN: ${{secrets.NPM_TOKEN_READ}} | ||
- name: "Check lint" | ||
run: npm run lint | ||
env: | ||
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | ||
|