fix: disable nullish coalescing linting error #834
Workflow file for this run
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 build | |
| npm pack | |
| mv openedx-frontend-base-*.tgz openedx-frontend-base.tgz | |
| cd test-site | |
| npm i ../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 |