Skip to content

Add securityOpt seccomp to compose-as-code #57

Add securityOpt seccomp to compose-as-code

Add securityOpt seccomp to compose-as-code #57

Workflow file for this run

name: Publish packages to npmjs
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
package: [ compose-as-code, create-composition ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies ${{ matrix.package }}🗂️
run: yarn install --frozen-lockfile
working-directory: ./packages/${{ matrix.package }}
- name: Test ${{ matrix.package }}🧪
run: yarn test
working-directory: ./packages/${{ matrix.package }}
- name: Format Check ${{ matrix.package }} 📄
run: yarn format:check
working-directory: ./packages/${{ matrix.package }}
- name: Lint Check ${{ matrix.package }}
run: yarn lint
working-directory: ./packages/${{ matrix.package }}
publish:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v2
with:
fetch-depth: "0"
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Setup Git
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor}}@users.noreply.github.com"
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Publish Packages 🚀
working-directory: ./packages/compose-as-code
run: yarn && yarn tsc
- name: Publish Packages 🚀
env:
CI: true
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx lerna publish