Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cagov/unemployment
This repository contains an Unemployment Guide for Californians to determine what benefits they may be eligible for, and a Retroactive Certification application
https://github.com/cagov/unemployment
Last synced: 2 months ago
JSON representation
This repository contains an Unemployment Guide for Californians to determine what benefits they may be eligible for, and a Retroactive Certification application
- Host: GitHub
- URL: https://github.com/cagov/unemployment
- Owner: cagov
- Created: 2020-04-09T23:19:41.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-10-05T00:45:04.000Z (over 1 year ago)
- Last Synced: 2024-04-17T05:02:21.933Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 6.77 MB
- Stars: 2
- Watchers: 13
- Forks: 4
- Open Issues: 70
-
Metadata Files:
- Readme: README.md
- Codeowners: docs/CODEOWNERS
Awesome Lists containing this project
README
# Unemployment Guide
This repository contains an Unemployment Guide for Californians to determine what benefits they may be eligible for.
We are developing the repository using Node v.12.16.2 and [React Bootstrap](https://react-bootstrap.github.io/).
## Setup
1. Install NPM dependencies
```bash
npm install
```
1. Start the application
```bash
npm start
```
1. Open http://localhost:3000/ to see the app## Running test suite
```bash
npm run test
```### To update snapshots so tests pass after intentional UI changes
```bash
npm run test:update-snapshots
```## Style
eslint checks the JS code style and stylelint checks the CSS style.```bash
npm run lint
```Additionally, we use [prettier](https://prettier.io/) to format JS and CSS files. You can either [configure it with your editor](https://prettier.io/docs/en/editors.html) or run
```
npm run prettier
```