-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (41 loc) · 959 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Run Prettier
run: |
yarn prettier --check --ignore-unknown .
- name: Typecheck
run: |
yarn tsc --noEmit
- name: Run ESLint
run: |
yarn eslint --ext ts --ext tsx ./src
- name: Run tests
run: |
yarn jest ./src
- name: Install Nix
uses: cachix/install-nix-action@v22
with:
extra_nix_config: |
sandbox = false
nix_path: nixpkgs=channel:nixpkgs-unstable
- name: Build
run: nix-build