Skip to content

Commit

Permalink
ci: build, lint and run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
olegshilov committed Jun 21, 2024
1 parent d7c737d commit f301ca8
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: CI

on:
push:
branches:
- main
pull_request:

permissions:
actions: read
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true

jobs:
main:
runs-on: ubuntu-latest
env:
NEXT_PUBLIC_TURNSTILE_SITEKEY: 'e2e-sitekey'
GIT_COMMIT_SHA: ${{ github.sha }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'pnpm'
- name: Setup dependencies
run: pnpm install --frozen-lockfile
# Install Cypress dependencies
- run: pnpm cypress install --force
- uses: nrwl/nx-set-shas@v4
- run: pnpm exec nx affected --parallel 3 --target lint test build
- run: pnpm exec nx affected --parallel 1 --target e2e-ci

0 comments on commit f301ca8

Please sign in to comment.