Skip to content

Commit

Permalink
ci: add main build
Browse files Browse the repository at this point in the history
  • Loading branch information
timdeschryver committed Aug 31, 2024
1 parent 4752d7b commit be7eea2
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: CI

on:
push:
branches:
- main
pull_request: {}

permissions:
Expand Down
110 changes: 110 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
name: main

on:
push:
branches:
- main
pull_request: {}

permissions:
actions: read
contents: read

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

jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- run: yarn --frozen-lockfile --non-interactive

lint:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- run: yarn --frozen-lockfile --non-interactive
- uses: nrwl/nx-set-shas@v4
- run: yarn nx -t lint

test:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- run: yarn --frozen-lockfile --non-interactive
- uses: nrwl/nx-set-shas@v4
- run: yarn nx -t test

e2e:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- run: yarn --frozen-lockfile --non-interactive
- uses: nrwl/nx-set-shas@v4
- run: yarn nx -t e2e --exclude=docs-app

build:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- run: yarn --frozen-lockfile --non-interactive
- uses: nrwl/nx-set-shas@v4
- run: yarn nx -t build

schematics-core-check:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- run: yarn --frozen-lockfile --non-interactive
- uses: nrwl/nx-set-shas@v4
- run: yarn copy:schematics
- run: yarn schematics:check

0 comments on commit be7eea2

Please sign in to comment.