Skip to content

build: temporarily passing test:shell with no tests #135

build: temporarily passing test:shell with no tests

build: temporarily passing test:shell with no tests #135

Workflow file for this run

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