Skip to content

Add a link to the FSH Online Examples repo #813

Add a link to the FSH Online Examples repo

Add a link to the FSH Online Examples repo #813

Workflow file for this run

name: Lint and Test
on: [push, pull_request]
jobs:
lint:
name: Check lint and prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: npm install
- run: npm run lint
- run: npm run prettier
env:
CI: true
test:
name: Test on node 12 and ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: npm install
- run: npm test
env:
CI: true