Skip to content

chore(deps): update actions/checkout action to v3 #27

chore(deps): update actions/checkout action to v3

chore(deps): update actions/checkout action to v3 #27

Workflow file for this run

name: Adapter Tests
on:
pull_request:
push:
branches: [main]
schedule:
- cron: '0 0 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
name: Unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Installing Node.js
uses: actions/setup-node@v3
with:
node-version: 18
check-latest: true
- name: NPM Install
run: npm install
- name: Linting
run: npm run format:ci
- name: Run unit tests
run: npm test