Add isLoggedIn
#922
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
env: {} | |
# FILE GENERATED WITH: npx ghat fregante/ghatemplates/node | |
# SOURCE: https://github.com/fregante/ghatemplates | |
name: CI | |
on: | |
- pull_request | |
- push | |
jobs: | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install | |
run: npm ci || npm install | |
- name: XO | |
run: npx xo | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install | |
run: npm ci || npm install | |
- name: build | |
run: npm run build --if-present | |
- name: Test | |
run: npm run test:unit | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install | |
run: npm ci || npm install | |
- name: build | |
run: npm run build | |
- name: Ensure that test URLs aren't included in the built file | |
run: '! grep http distribution/index.js' |