Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
feat(QR scanner) product implementation
Browse files Browse the repository at this point in the history
- fix some bugs
- error notification added
- add rxb scripts to repository
  • Loading branch information
svetlitskiy committed Apr 19, 2024
1 parent 3c71124 commit 423e02c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/pull-request.yaml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/tests.yaml
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}}

0 comments on commit 423e02c

Please sign in to comment.