Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 526 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 526 Bytes

jest-action-test

Full example of using Github Actions with Jest, Vue and Yarn

Project setup

yarn install

Compiles and hot-reloads for development

yarn serve

Compiles and minifies for production

yarn build

Run your (unit) tests

yarn test

Lints and fixes files

yarn lint

Docker

To build

docker build -t jest-action-test . -f ".github/Dockerfile"

To run

docker run jest-action-test yarn test
docker run jest-action-test yarn lint