Skip to content

Commit

Permalink
chore: setup cicd testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ldhyen99 committed Jun 27, 2024
1 parent bc438f8 commit 2aa1ff2
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Build and Test

on:
pull_request:
branches:
- next

jobs:
test_and_build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}

- name: Enable Corepack
run: corepack enable

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '21'
cache: 'yarn'

- name: Install dependencies
run: |
yarn cache clean && yarn install --immutable
- name: Check linting
run: yarn lint

- name: Run tests
run: |
yarn jest --changedSince=origin/next --ci --json --coverage --testLocationInResults --outputFile=report.json
- name: Coverage
uses: artiomtr/jest-coverage-report-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
coverage-file: report.json
base-coverage-file: report.json
threshold: 80

- name: Build
run: yarn build

0 comments on commit 2aa1ff2

Please sign in to comment.