test: installing cypress and setting up basic ci check #59
Workflow file for this run
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: Build ngx-turnstile | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Angular | |
run: npm install -g @angular/cli | |
- name: Install Dependencies | |
run: yarn install | |
- name: Run eslint | |
run: ng lint | |
- name: Build ngx-turnstile | |
run: ng build ngx-turnstile |