Skip to content

Commit

Permalink
Merge pull request #15 from lnls-sirius/dev
Browse files Browse the repository at this point in the history
Fix socker error
  • Loading branch information
RafaelLyra8 authored Apr 27, 2023
2 parents 02e141a + 1e58d9a commit 0cc0853
Show file tree
Hide file tree
Showing 17 changed files with 10,229 additions and 6,712 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: RAD Detectors CD

on:
push:
branches: main
release:
types: [created]

jobs:
deploy:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- 80:80
frontend:
container_name: 'rad-det'
image: 'ghcr.io/lnls-sirius/rad-det-frontend:1.1.2'
image: 'ghcr.io/lnls-sirius/rad-det-frontend:1.1.3'
build:
context: ./front_end
ports:
Expand Down
1 change: 1 addition & 0 deletions front_end/babel.config.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = {presets: ['@babel/preset-env']}
12 changes: 12 additions & 0 deletions front_end/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'jsdom',
transform: {
'^.+\\.(ts|tsx)?$': 'ts-jest',
"^.+\\.(js|jsx)$": [
'babel-jest',
{ configFile: './babel.config.test.js' }]
},
roots: ['<rootDir>/src/tests/']
};
Loading

0 comments on commit 0cc0853

Please sign in to comment.