Skip to content

feat: add eslint, prettier, and husky, and apply formatting to all so… #19

feat: add eslint, prettier, and husky, and apply formatting to all so…

feat: add eslint, prettier, and husky, and apply formatting to all so… #19

Workflow file for this run

name: Publish package to GitHub Packages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
# permissions:
# contents: read
# packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
registry-url: 'https://npm.pkg.github.com'
scope: '@mitre-attack'
- run: npm ci
- run: npm test
- run: npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}