Add screenshots to README #244
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: slugfit-development | |
on: | |
push: | |
branches: [development] | |
pull_request: | |
branches: [development, feature/**] | |
jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Setup Node.js | |
# uses: actions/setup-node@v1 | |
# with: | |
# node-version: 16 | |
# - name: Install Dependencies | |
# run: yarn install --frozen-lockfile | |
# - name: Create Production Build | |
# run: yarn build | |
# - name: Archive Production Artifact | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: build | |
# path: build | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Lint Typescript | |
run: yarn lint |