fix: sanitize filenames with 'loadAsync' #13
Workflow file for this run
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
# Builds the package and runs all tests. | |
name: CI | |
on: | |
push: | |
branches-ignore: | |
- master | |
- develop | |
- release-* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # Required by Akeyless | |
contents: read | |
packages: read | |
steps: | |
- name: Cancel previous runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Install modules | |
run: npm install --no-audit | |
- name: Lint | |
run: npm run lint | |
- name: Build package | |
run: npm run build-package | |
- name: Run unit tests | |
run: | | |
npx http-server -s & | |
npm run test | |