Skip to content

Commit

Permalink
feat: Added support for node v16
Browse files Browse the repository at this point in the history
  • Loading branch information
edx-requirements-bot authored and Jawayria committed Apr 6, 2022
1 parent 4a17c25 commit 6246c12
Show file tree
Hide file tree
Showing 4 changed files with 30,829 additions and 854 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
name: node_js CI

on: [push, pull_request]
on:
push:
branches:
- 'master'
pull_request:

jobs:
build:
tests:
runs-on: ubuntu-latest
strategy:
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: Validate no uncommitted package-lock changes
run: make validate-no-uncommitted-package-lock-changes
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copied from https://github.com/BretFisher/node-docker-good-defaults/blob/master/Dockerfile

FROM node:12
FROM node:16

# Create app directory
RUN mkdir -p /edx/app
Expand Down
Loading

0 comments on commit 6246c12

Please sign in to comment.