Skip to content

chore: update devcontainer spec #3

chore: update devcontainer spec

chore: update devcontainer spec #3

Workflow file for this run

# .github/workflows/main.yml
name: Test & Build
on:
workflow_call:
push:
branches:
- main
- release/*
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run lint