@duetds/date-picker
Version:
Duet Date Picker is an open source version of Duet Design System’s accessible date picker.
19 lines (15 loc) • 564 B
Plain Text
# Build the code, pretty trivial for a Node.js project.
build:
npm install
# Test the code. First lints, then runs the unit tests, checking coverage.
test: build
npm run lint
npm run test
# Run the CircleCI build locally.
# Install the CLI with: curl -fLSs https://circle.ci/cli | bash
circleci:
circleci config validate -c .circleci/config.yml
circleci build --job test
# Let make know that these commands are not folder or file names, but command
# names (otherwise a folder called 'test' could stop the test recipe working).