2021-08-18 07:18:09 +00:00
|
|
|
name: build-test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ["master"]
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-05 06:23:03 +00:00
|
|
|
uses: actions/checkout@v4
|
2021-08-18 07:18:09 +00:00
|
|
|
- name: Setup node
|
2024-02-02 14:03:17 +00:00
|
|
|
uses: actions/setup-node@v4
|
2021-08-18 07:18:09 +00:00
|
|
|
with:
|
2023-10-04 07:23:43 +00:00
|
|
|
node-version: "18"
|
2021-08-18 07:18:09 +00:00
|
|
|
- name: Install dependencies
|
2024-02-07 16:36:36 +00:00
|
|
|
run: yarn --immutable
|
2024-04-22 13:36:13 +00:00
|
|
|
- name: Run checks
|
|
|
|
run: yarn lint
|
2021-08-18 07:18:09 +00:00
|
|
|
- name: Run tests
|
|
|
|
run: yarn test
|