Skip to content

Official 1.1.1 Release #424

Official 1.1.1 Release

Official 1.1.1 Release #424

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build