Skip to content

Bump @types/node from 20.11.28 to 20.12.2 #48

Bump @types/node from 20.11.28 to 20.12.2

Bump @types/node from 20.11.28 to 20.12.2 #48

Workflow file for this run

on:
push:
branches:
- main
pull_request:
release:
types:
- created
name: CI
jobs:
build:
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: install
run: yarn install --frozen-lockfile
- name: build
run: yarn build
- name: test
run: yarn test
- name: Publish
uses: menduz/oddish-action@master
with:
registry-url: "https://registry.npmjs.org"
access: public
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}