Skip to content

Commit

Permalink
Merge branch 'main' into nik-create-multiple-content-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wirednkod authored Jan 14, 2024
2 parents ec66b53 + 460ada1 commit 2ff0d3b
Show file tree
Hide file tree
Showing 15 changed files with 1,993 additions and 165 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Main CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build

all:
# This job ensures that all jobs above (now we have just build) are successful.
needs: [build]
runs-on: ubuntu-latest
steps:
- run: echo Success
Loading

0 comments on commit 2ff0d3b

Please sign in to comment.