Skip to content

Rg/make nix package #14

Rg/make nix package

Rg/make nix package #14

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
name: Build + Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16.17.0"
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn prisma generate
- run: yarn build
- name: Prettify code
uses: creyD/[email protected]
with:
prettier_options: --write **/*.ts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}