chore: logo switch #85
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 | |
on: | |
push: | |
branches: [ dev, main, master, hotfix/*, feature/*, release/* ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
env: | |
RUNNER: github | |
NODE_ENV: dev | |
steps: | |
- name: Github checkout | |
uses: actions/checkout@v4 | |
- name: Setup node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.19.0' | |
- name: Install global Node.js dependencies | |
run: npm i node-sass -g | |
- name: Install local Node.js dependencies | |
run: npm i | |
- name: Build local project | |
run: npm run build | |
- name: Lint | |
run: npm run lint:js | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-files | |
path: | | |
build | |
retention-days: 3 | |
unit-tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
needs: [ build ] | |
env: | |
RUNNER: github | |
NODE_ENV: dev | |
steps: | |
- name: Github checkout | |
uses: actions/checkout@v4 | |
- name: Setup node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.19.0' | |
- name: Install Node.js dependencies | |
run: npm i | |
- name: Run unit tests | |
run: npm run ci:test | |
env: | |
CI: true | |
- name: Publish to coveralls.io | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ./build/code-coverage/lcov.info | |
e2e-tests: | |
name: E2E Tests | |
runs-on: ubuntu-latest | |
needs: [ build ] | |
env: | |
RUNNER: github | |
NODE_ENV: dev | |
steps: | |
- name: Github checkout | |
uses: actions/checkout@v4 | |
- name: Setup node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.19.0' | |
- name: Install global OS dependencies | |
run: sudo apt-get install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libnss3 libxss1 libasound2 libxtst6 xauth xvfb | |
- name: Install local Node.js dependencies | |
run: npm i | |
- name: Create build directory | |
run: mkdir build | |
- name: Download build artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: build-files | |
path: build | |
- name: Run E2E tests | |
run: npm run ci:dev & npm run ci:e2e | |
env: | |
CI: true | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-files-e2e | |
path: | | |
build | |
retention-days: 3 |