Feat/add show modifications options on problem report table #295
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: "🧪 Tests & ✨ Lint" | |
on: | |
pull_request: | |
branches: | |
- dev | |
- re7 | |
- master | |
push: | |
branches: | |
- dev | |
- re7 | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "yarn" | |
- name: Install Dependencies | |
run: yarn install | |
- name: Build and Compile | |
run: yarn compile | |
- name: Run Tests | |
run: yarn test | |
- name: Run Lint | |
run: yarn lint |