mirror of
https://github.com/SrIzan10/util-utils.git
synced 2026-06-27 19:12:36 +00:00
20 lines
265 B
YAML
20 lines
265 B
YAML
name: Jest
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
run: yarn
|
|
|
|
- name: Build project
|
|
run: yarn build
|
|
|
|
- name: Run Jest
|
|
run: yarn test
|