Skip to content

Feat/disable tokens #428

Feat/disable tokens

Feat/disable tokens #428

Workflow file for this run

name: Tests
on:
push:
branches: [develop, master]
pull_request:
branches: [develop, master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: ./package-lock.json
- run: npm ci
- name: Check changesets
if: github.base_ref == 'develop'
run: npx changeset status --since=origin/develop
- name: Run tests
run: CI=true npm test