2020-03-22 19:56:55 +02:00
|
|
|
name: Tests
|
2020-01-16 23:50:02 +02:00
|
|
|
|
2021-02-04 14:01:20 +02:00
|
|
|
on: pull_request
|
2020-01-16 23:50:02 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-02-20 16:28:33 +02:00
|
|
|
- uses: actions/checkout@v2
|
2023-07-26 22:34:06 +05:30
|
|
|
- name: Setup Node.js 14.x
|
2021-02-20 16:28:33 +02:00
|
|
|
uses: actions/setup-node@v2
|
2020-01-16 23:50:02 +02:00
|
|
|
with:
|
2023-07-26 22:34:06 +05:30
|
|
|
node-version: 14.x
|
2020-01-16 23:50:02 +02:00
|
|
|
- name: Install and test
|
|
|
|
run: |
|
2021-02-20 14:47:17 +02:00
|
|
|
yarn --frozen-lockfile
|
|
|
|
yarn test:app
|