Skip to content

Move AddonId enum to the SDK #334

Move AddonId enum to the SDK

Move AddonId enum to the SDK #334

Workflow file for this run

name: Check
on: [push]
jobs:
build:
name: Build, Test & Prettier
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
env:
CI: true
steps:
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm i
- name: lint
run: npm run lint
- name: build
run: npm run build
- name: test
run: npm test
- name: prettier
run: npm run prettier:check