mirror of
https://github.com/SrIzan10/util-utils.git
synced 2026-06-06 01:06:59 +00:00
20 lines
274 B
YAML
20 lines
274 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 Typescript files
|
|
run: yarn build
|
|
|
|
- name: Run Jest
|
|
run: yarn test
|