fix: update feedback updatedAt on issue modification #28
Workflow file for this run
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 | |
on: | |
pull_request: | |
branches: [dev, beta, main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: Install Dependencies | |
run: yarn install --immutable --immutable-cache --check-cache | |
- name: setup environment variables | |
run: | | |
echo "JWT_SECRET=${{ vars.TEST_JWT_SECRET }}" >> ./apps/api/.env.test | |
echo "OS_USE=${{ vars.TEST_OS_USE }}" >> ./apps/api/.env.test | |
- name: Run Tests | |
run: yarn test |