build: temporarily passing test:shell with no tests #135
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: 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* openedx-frontend-base.tgz | |
cd test-project | |
npm i ../openedx-frontend-base.tgz | |
npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test |