Updated readme & package and fixes for issue 231,233 etc #903
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: Test Check | |
on: [push, pull_request_target] | |
jobs: | |
build: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: | | |
node --version | |
yarn --version | |
- name: set @bitregistry translation-help | |
run: yarn config set '@bit:registry' https://node.bit.dev | |
- name: yarn install | |
run: yarn install | |
- name: run tests | |
run: yarn test |