Add new coupon PROMOJAN24 #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 10.x | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install Packages | |
run: yarn | |
- name: Check Lint | |
run: yarn lint | |
- name: Check Buld | |
run: yarn build | |
- name: Run Tests | |
run: yarn test |