Skip to content

Commit

Permalink
first variant
Browse files Browse the repository at this point in the history
  • Loading branch information
BelousSofiya committed Nov 2, 2023
1 parent c4d7533 commit 9affd39
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests_fe.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build and Test

on: pull_request

jobs:
build_and_test:
name: Testing # job name (unique id)
runs-on: ubuntu-latest # on which machine to run
steps: # list of steps
- name: Install NodeJS
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Code Checkout
uses: actions/checkout@v3

- name: Install Dependencies
run: |
cd FrontEnd
npm install
- name: Code Testing
run: |
cd FrontEnd
npm test

0 comments on commit 9affd39

Please sign in to comment.