Skip to content

Update dependency esbuild to ^0.19.0 #395

Update dependency esbuild to ^0.19.0

Update dependency esbuild to ^0.19.0 #395

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: 'Tests'
runs-on: ubuntu-latest
steps:
- uses: wyvox/action@v1
- name: Lint
run: pnpm lint
- name: Run Tests
run: pnpm test
floating:
name: 'Floating Dependencies'
runs-on: ubuntu-latest
steps:
- uses: wyvox/action@v1
with:
no-lockfile: true
- name: Run Tests
run: pnpm test
try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: 'test'
strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-3.28
- ember-lts-4.4
- ember-release
- ember-beta
steps:
- uses: wyvox/action@v1
- name: Run Tests
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
working-directory: test-apps/embroider-app
# https://github.com/changesets/action
release:
name: Release
timeout-minutes: 5
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
needs:
- test
- floating
- try-scenarios
steps:
- uses: wyvox/action@v1
- run: pnpm build
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: pnpm release
title: "Release Preview"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}