fixed cicd #2 #21
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: 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@v4 | |
# runs npm i inside the root directory | |
- name: npm i root | |
run: | | |
cd $GITHUB_WORKSPACE | |
npm i | |
# builds the library | |
- name: build package | |
run: | | |
cd $GITHUB_WORKSPACE | |
npm run build | |
# runs tests and linting | |
- name: Test | |
run: | | |
cd $GITHUB_WORKSPACE | |
npm run test |