├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md └── mc_all.sas /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | 2 | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created 3 | # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages 4 | 5 | name: MacroCore 6 | 7 | on: 8 | push: 9 | branches: 10 | - master 11 | 12 | jobs: 13 | release: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - name: Checkout 17 | uses: actions/checkout@v2 18 | - name: Semantic Release 19 | uses: cycjimmy/semantic-release-action@v2 20 | env: 21 | GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} 22 | NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This repo has moved, to a new & permanent home: https://github.com/sasjs/core 2 | 3 | Please visit, and STAR! 4 | --------------------------------------------------------------------------------