Skip to content

feat(rapid-handout): add routing #132

feat(rapid-handout): add routing

feat(rapid-handout): add routing #132

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Cache install
uses: actions/cache@v2
with:
path: ./node_modules/
key: ${{ github.sha }}-install
code_style:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v3
- name: Retrive install cache
uses: actions/cache@v2
with:
path: ./node_modules/
key: ${{ github.sha }}-install
- name: prettier
run: yarn prettier:check