feat: Create llama3.yml presets for llama3 family #369
Workflow file for this run
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: CI test for cortex-js | |
on: | |
pull_request: | |
paths: | |
- "cortex-js/**" | |
- .github/workflows/cortex-js-quality-gate.yml | |
workflow_dispatch: | |
jobs: | |
build-and-publish-plugins: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
# Setup .npmrc file to publish to npm | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
registry-url: "https://registry.npmjs.org" | |
- run: yarn install && yarn build | |
working-directory: ./cortex-js | |
- run: yarn test | |
name: run tests | |
working-directory: ./cortex-js |