chore(deps): update dependency axios-mock-adapter to v2 #1113
This file contains hidden or 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: Default CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Nodejs Env | |
| run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV | |
| - name: Setup Nodejs | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE_VER }} | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| npm run pack | |
| cd test-site | |
| npm i ../pack/openedx-frontend-base.tgz | |
| npm ci | |
| - name: Lint | |
| run: npm run lint | |
| - name: Test | |
| run: npm run test | |
| - name: Build Test Site | |
| run: cd test-site; npm run build |