Skip to content

Merge pull request #265 from relay-tools/dependabot/npm_and_yarn/exam… #675

Merge pull request #265 from relay-tools/dependabot/npm_and_yarn/exam…

Merge pull request #265 from relay-tools/dependabot/npm_and_yarn/exam… #675

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: npm ci
- name: compile
run: npm run compile
- name: format
run: npm run format:ci
- name: lint
run: npm run eslint
- name: test
run: npm run test
env:
CI: true