fix(domais): change rule to create wildcards #19
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 APIs packages | ||
on: | ||
workflow_call: | ||
jobs: | ||
tests: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
node-version: [14] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Cache .pnpm-store | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.pnpm-store | ||
key: ${{ runner.os }}-node${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
- name: Install pnpm | ||
run: curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@6 | ||
- name: Install dependencies | ||
run: pnpm i | ||
- name: Check code style | ||
run: pnpm lint | ||
- name: Build packages | ||
run: pnpm m run build | ||
- name: Run tests | ||
env: | ||
AWS_ACCESS_KEY: aaaaa1 | ||
JWT_SECRET: aaaaa1 | ||
AWS_SECRET_KEY: aaaaa1 | ||
GRAPHQL_HTTP_URL: http://bonde.devel/graphql | ||
run: pnpm test | ||
- name: Wait before uploading coverage | ||
run: sleep 30s | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v2 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
fail_ci_if_error: true | ||
files: ./coverage/lcov.info | ||
flags: unittests | ||
verbose: true |