back to single repo #63
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: CI | |
on: | |
push: | |
branches: [master, alpha, beta] | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
sanity: | |
name: Sanity | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install main project | |
uses: bahmutov/npm-install@v1 | |
with: | |
useLockFile: false | |
- name: Lint | |
run: npm run lint:ci | |
- name: Unit Tests | |
run: npm test | |
- name: Build | |
run: npm run build | |
- name: Install E2E Project | |
uses: bahmutov/npm-install@v1 | |
with: | |
useLockFile: false | |
working-directory: e2e | |
- name: Run E2E Tests (Fallback) | |
run: npm test -- --testEnvironment=node | |
working-directory: e2e | |
- name: Run E2E Tests (Default) | |
run: npm test | |
working-directory: e2e | |
publish: | |
name: Publish | |
needs: [sanity] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install main project | |
uses: bahmutov/npm-install@v1 | |
with: | |
useLockFile: false | |
- name: Semantic release | |
run: npx --no-install semantic-release --debug | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |