Skip to content

Commit

Permalink
feat: add support for node 16
Browse files Browse the repository at this point in the history
- Replaced node-sass with sass
- Replaced extract-text-webpack-plugin with mini-css-extract-plugin
- Upgraded edx/paragon
- Transform svg file in jest to fix tests
  • Loading branch information
iamsobanjaved committed Mar 11, 2022
1 parent 343e913 commit 26690a4
Show file tree
Hide file tree
Showing 4 changed files with 21,014 additions and 36,083 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,26 @@ name: node_js CI
on:
push:
branches:
- master
- master
pull_request:
branches:
- '**'
- '**'

jobs:
build:
tests:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
node: [12, 14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Nodejs
uses: actions/setup-node@v1
with:
node-version: 12
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm install
Expand Down

0 comments on commit 26690a4

Please sign in to comment.