Skip to content

Update 'authors' and 'contributors' sections for clarity #12

Update 'authors' and 'contributors' sections for clarity

Update 'authors' and 'contributors' sections for clarity #12

Workflow file for this run

name: 'CI Build'
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
types: [ opened, reopened, edited, synchronize ]
branches:
- master
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: false
jobs:
compile-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
scope: '@dalet-oss'
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Run tests
run: yarn test