Skip to content

feat(install_backend_app.ts): append namespace to bucketPrefix for be… #165

feat(install_backend_app.ts): append namespace to bucketPrefix for be…

feat(install_backend_app.ts): append namespace to bucketPrefix for be… #165

Workflow file for this run

name: ci develop
on:
push:
branches:
- develop
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: set up node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: check out code
uses: actions/checkout@v4
- name: get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> ${GITHUB_OUTPUT}
- name: check yarn cache
uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: install
run: yarn
- name: unit tests
run: yarn test:coverage
env:
CI: true
- name: upload test coverage to codecov
uses: codecov/codecov-action@v4