Skip to content

✨ Added python preset #202

✨ Added python preset

✨ Added python preset #202

Workflow file for this run

name: Test and lint
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12]
steps:
- name: Checkout project
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: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Unit tests
run: yarn test
- name: End to end tests
run: |
git config --global user.email "[email protected]"
git config --global user.name "Test gitmoji"
yarn test:e2e