Skip to content

Update /resources endpoints to consume from Django API localhost:8000 #102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Apr 26, 2020
3 changes: 2 additions & 1 deletion .babelrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"presets": ["@babel/preset-env", "@babel/preset-react"]
"presets": ["@babel/preset-env", "@babel/preset-react"],
"plugins": ["@babel/plugin-transform-runtime"]
}
10 changes: 2 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: Jest and Linting
on:
push:
branches:
- master
pull_request:
branches:
- master
on: [push, pull_request]

jobs:
build:
Expand All @@ -17,7 +11,7 @@ jobs:
run: npm install

- name: Running Jest Tests
run: CI=true npm test
run: npm test --ci

- name: Running ESLint
run: npm run lint
Loading