Example distribution #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Common | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18 | |
check-latest: true | |
registry-url: https://npmp.mynth.ai | |
always-auth: true | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.MYNTH_NPMP }} | |
- name: Update npm | |
run: npm install -g npm@latest | |
- name: Install dependencies | |
run: npm ci --include dev | |
- name: Install Aiken | |
run: | | |
curl -sSfL https://install.aiken-lang.org | bash | |
~/.aiken/bin/aikup | |
sudo ln -s ~/.aiken/bin/aiken /usr/local/bin/aiken | |
- name: Build | |
run: npm run build | |
- name: Lint | |
run: npm run lint |