Skip to content

chore(ci): update ci/cd workflow for backend #28

chore(ci): update ci/cd workflow for backend

chore(ci): update ci/cd workflow for backend #28

Workflow file for this run

name: Frontend
on:
pull_request:
branches:
- main
- dev_wfh
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Run lint
run: yarn lint
- name: Run jest
run: yarn test