This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
feat(common) QR scaner authorization via email #1
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: Run tests | |
on: [pull_request] | |
env: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN_READ}} | |
jobs: | |
install-modules: | |
runs-on: [self-hosted, cere-io-large] | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/checkout@v2' | |
- name: 'Setup tests' | |
uses: './.github/actions/setup' | |
build-test: | |
runs-on: [self-hosted, cere-io-large] | |
needs: install-modules | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/checkout@v2' | |
- name: 'Setup tests' | |
uses: './.github/actions/setup' | |
- name: 'Check ts build' | |
run: npm run build | |
lint-tests: | |
runs-on: [self-hosted, cere-io-large] | |
needs: install-modules | |
steps: | |
- name: 'Checkout' | |
uses: 'actions/checkout@v2' | |
- name: 'Setup tests' | |
uses: './.github/actions/setup' | |
- name: 'Check ESLint and prettier' | |
run: npm run lint | |