Files
ukraine-timemap/.github/workflows/ci.yml
Ebrahem Farooqui 62274fdb23 Adding github head ref
Adding the branch that is requesting the pull request in order to run the file on that branch exclusively
2021-03-01 16:06:02 -08:00

27 lines
494 B
YAML

name: CI
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
- run: npm install
- run: cp example.config.js config.js
- run: npm test
env:
CI: true
- run: npm run lint
env:
CI: true