Skip to content

Commit

Permalink
ci: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tutkli committed Feb 23, 2024
1 parent 86d1846 commit 52b2ef6
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 85 deletions.
99 changes: 16 additions & 83 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,53 +6,12 @@ on:
- master
pull_request:

env:
DOCS_APP_ARTIFACT_NAME: docs
DOCS_APP_PATH: dist/apps/docs/browser
NODE_OPTIONS: '--max-old-space-size=6144'

permissions:
actions: read
contents: read

jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version-file: .node-version
# - run: corepack enable
# - uses: actions/setup-node@v4
# with:
# cache: npm
# cache-dependency-path: '**/package-lock.json'
# - name: Install
# run: npm ci
# - name: Build
# run: npm run build
#
# tests:
# runs-on: ubuntu-latest
# needs:
# - build
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version-file: .node-version
# - run: corepack enable
# - uses: actions/setup-node@v3
# with:
# cache: npm
# cache-dependency-path: '**/package-lock.json'
# - name: Install
# run: npm ci
# - name: Test
# run: npm run tests:ci

docs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -67,49 +26,23 @@ jobs:
- name: Install
run: npm ci
- name: Build
run: npx nx build docs --base-href=/ngx-sonner/
- name: Upload docs website
if: github.event_name == 'push' && github.ref_name == 'master'
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: '${{ env.DOCS_APP_ARTIFACT_NAME }}'
path: '${{ env.DOCS_APP_PATH }}'
retention-days: 1
run: npm run build

deploy-docs:
name: '[Merge] Deploy docs website'
needs:
- docs
if: github.event_name == 'push' && github.ref_name == 'master'
tests:
runs-on: ubuntu-latest
environment:
name: github-pages
url: '${{ steps.deploy.outputs.page_url }}'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: |-
${{ github.workflow }}-deploy-docs-${{
github.event_name == 'push'
&& github.ref
|| github.head_ref
}}
cancel-in-progress: "${{ github.event_name != 'push' }}"
needs:
- build
steps:
- name: Download docs website
uses: actions/download-artifact@v4
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
name: '${{ env.DOCS_APP_ARTIFACT_NAME }}'
path: '${{ env.DOCS_APP_PATH }}'
- name: Set up GitHub Pages
uses: actions/configure-pages@v4
- name: Upload GitHub Pages-compatible tarball
uses: actions/upload-pages-artifact@v3
node-version-file: .node-version
- run: corepack enable
- uses: actions/setup-node@v3
with:
path: '${{ env.DOCS_APP_PATH }}'
- name: Deploy docs website tarball
id: deploy
uses: actions/deploy-pages@v4
cache: npm
cache-dependency-path: '**/package-lock.json'
- name: Install
run: npm ci
- name: Test
run: npm run tests:ci
72 changes: 71 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,81 @@
name: Release

on:
workflow_dispatch:
push:
branches:
- master

env:
DOCS_APP_ARTIFACT_NAME: docs
DOCS_APP_PATH: dist/apps/docs/browser
NODE_OPTIONS: '--max-old-space-size=6144'

permissions:
contents: read

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
- run: corepack enable
- uses: actions/setup-node@v4
with:
cache: npm
cache-dependency-path: '**/package-lock.json'
- name: Install
run: npm ci
- name: Build
run: npx nx build docs --base-href=/ngx-sonner/
- name: Upload docs website
if: github.event_name == 'push' && github.ref_name == 'master'
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: '${{ env.DOCS_APP_ARTIFACT_NAME }}'
path: '${{ env.DOCS_APP_PATH }}'
retention-days: 1

deploy-docs:
name: '[Merge] Deploy docs website'
needs:
- docs
if: github.event_name == 'push' && github.ref_name == 'master'
runs-on: ubuntu-latest
environment:
name: github-pages
url: '${{ steps.deploy.outputs.page_url }}'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: |-
${{ github.workflow }}-deploy-docs-${{
github.event_name == 'push'
&& github.ref
|| github.head_ref
}}
cancel-in-progress: "${{ github.event_name != 'push' }}"
steps:
- name: Download docs website
uses: actions/download-artifact@v4
with:
name: '${{ env.DOCS_APP_ARTIFACT_NAME }}'
path: '${{ env.DOCS_APP_PATH }}'
- name: Set up GitHub Pages
uses: actions/configure-pages@v4
- name: Upload GitHub Pages-compatible tarball
uses: actions/upload-pages-artifact@v3
with:
path: '${{ env.DOCS_APP_PATH }}'
- name: Deploy docs website tarball
id: deploy
uses: actions/deploy-pages@v4

release:
name: Release
runs-on: ubuntu-latest
Expand Down
14 changes: 14 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "nx run-many --target build --all --parallel=1",
"prettify": "prettier --write .",
"test": "nx test ngx-sonner",
"tests:ci": "nx test ngx-sonner --runInBand",
"tests:ci": "nx test ngx-sonner --runInBand --passWithNoTests",
"prepublishOnly": "npm run build"
},
"private": true,
Expand Down Expand Up @@ -57,6 +57,8 @@
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"autoprefixer": "^10.4.0",
"conventional-changelog-angular": "^7.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "~8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-playwright": "^0.15.3",
Expand Down

0 comments on commit 52b2ef6

Please sign in to comment.