Skip to content

Merge pull request #7 from Service-Soft/quickfix-is-equal #18

Merge pull request #7 from Service-Soft/quickfix-is-equal

Merge pull request #7 from Service-Soft/quickfix-is-equal #18

Workflow file for this run

name: CI/CD
# Controls when the action will run.
on: push
# workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# runs npm i inside the root directory
- name: npm i
run: |
cd $GITHUB_WORKSPACE
npm i
# runs npm i inside the showcase directory
- name: npm i
run: |
cd $GITHUB_WORKSPACE/showcase
npm i
# runs test
- name: Test
run: |
cd $GITHUB_WORKSPACE
npm run test