Skip to content

Bump postcss from 8.4.29 to 8.4.31 #48

Bump postcss from 8.4.29 to 8.4.31

Bump postcss from 8.4.29 to 8.4.31 #48

Workflow file for this run

name: NPM package (next)
on:
push:
branches: [ master ]
# release:
# types: [created]
jobs:
build:
if: github.ref == 'refs/heads/master' && github.event_name == 'push' && github.repository == 'eclipse-cdt-cloud/theia-trace-extension'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
# Defaults to the user or organization that owns the workflow file
scope: '@theia-ide'
- run: yarn
- run: yarn publish:next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}