Skip to content

chore(release): publish #94

chore(release): publish

chore(release): publish #94

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
actions: read
contents: read
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Nx cloud is disabled due to exceeding free plan
# - run: npx nx-cloud start-ci-run --distribute-on="3 linux-medium-js" --stop-agents-after="e2e-ci"
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Setup
run: |
npx playwright install-deps
- name: Install dependencies
run: |
npm ci
npx playwright install
- name: Tests & Lint
run: npx nx run-many -t test lint
- name: E2E tests
run: npx nx run-many -t e2e
create-tags:
runs-on: ubuntu-latest
needs: 'verify'
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- name: Git login
run: |
git config --global user.email "yarindeoh@gmail.com"
git config --global user.name "Yarin Dekel"
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- run: npx nx release --skip-publish
shell: bash
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}