Skip to content

Allow adding firearms in grid #333

Allow adding firearms in grid

Allow adding firearms in grid #333

Workflow file for this run

name: Build, test and lint
on:
push:
branches:
- '**'
jobs:
run-linters:
name: Linter and tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Setup Node.js (.nvmrc)
uses: actions/setup-node@v1
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- run: yarn install
- run: yarn tsc
- run: yarn lint
- run: yarn test