Skip to content

Update .npmrc to use GitHub secrets for authentication token #10

Update .npmrc to use GitHub secrets for authentication token

Update .npmrc to use GitHub secrets for authentication token #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build packages
run: yarn build
- name: Run tests
run: yarn test
- name: Lint
run: yarn lint