ci(publish): set npm acces to public by default #31
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 | |
on: | |
pull_request: | |
push: | |
branches: ["master"] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "npm" | |
cache-dependency-path: package-lock.json | |
- name: Install node dependencies | |
run: npm ci | |
- name: Set up Python with PDM | |
uses: pdm-project/setup-pdm@v3 | |
with: | |
python-version: "3.11" | |
- name: Install Python dependencies | |
run: pdm sync -d | |
- name: Lint | |
run: npx nx run-many --target=lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "npm" | |
cache-dependency-path: package-lock.json | |
- name: Install node dependencies | |
run: npm ci | |
- name: Set up Python with PDM | |
uses: pdm-project/setup-pdm@v3 | |
with: | |
python-version: "3.11" | |
- name: Install Python dependencies | |
run: pdm sync -d | |
- name: Test | |
run: npx nx run-many --target=test | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "npm" | |
cache-dependency-path: package-lock.json | |
- name: Install node dependencies | |
run: npm ci | |
- name: Set up Python with PDM | |
uses: pdm-project/setup-pdm@v3 | |
with: | |
python-version: "3.11" | |
- name: Install Python dependencies | |
run: pdm sync -d | |
- name: Build | |
run: npx nx run-many --target=build |