Skip to content

💚 ci: move to github actions #4

💚 ci: move to github actions

💚 ci: move to github actions #4

Workflow file for this run

name: NodeJS
on:
push:
branches: ["master", "develop"]
pull_request:
branches: ["master", "develop"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: make install
- run: make prod
test-unit:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: make test-unit
test-e2e:
needs: build
runs-on: ubuntu-22.04
steps:
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Checkout
uses: actions/checkout@v4
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v6
with:
build: make prod
start: make test-e2e
browser: chrome