Initial implementation of the accordion XBlock #2
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: Frontend CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./frontend | |
strategy: | |
matrix: | |
npm-test: | |
# - i18n_extract | |
- lint | |
- test | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Nodejs Env | |
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ env.NODE_VER }} | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run test | |
- name: upload coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
fail_ci_if_error: false |