Bump ts-loader from 9.4.4 to 9.5.0 #716
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow that is manually triggered | |
name: Firefox, Chrome | |
# Controls when the action will run. Workflow runs when manually triggered using the UI | |
# or API. | |
on: [push, pull_request] | |
jobs: | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v3 | |
- run: bin/setup-rabbit.sh | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run build | |
- run: npx karma start spec/karma.conf.js --single-run --browsers=ChromeNoSandboxHeadless | |
- run: npx karma start spec/karma.conf.js --single-run --browsers=FirefoxHeadless | |
- run: npm pack | |
- run: bin/rx-stomp.sh |