Skip to content

patch: Focus on platform token in README #394

patch: Focus on platform token in README

patch: Focus on platform token in README #394

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Use Node.js # will read version from .nvmrc
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Prettier
run: npm run prettier
- name: Test
run: npm run test:unit
- name: Build
run: npm run build