Skip to content

infra(lint): allow newer syntax #1220

infra(lint): allow newer syntax

infra(lint): allow newer syntax #1220

Workflow file for this run

name: npm
on:
push:
branches: [main]
jobs:
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org/'
cache: npm
- run: npm ci
- run: npm run build
- run: npx pleb@6 publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}