Bump minimatch, browserstack-local, sucrase, tmp and workbox-build in /peer #426
This file contains hidden or 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
| name: Scala JS Test | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| merge_group: | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| working-directory: peer | |
| jobs: | |
| scala-js-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: "17" | |
| distribution: "temurin" | |
| cache: "sbt" | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| cache: "npm" | |
| cache-dependency-path: peer/package-lock.json | |
| - run: npm ci | |
| - name: Create .env file | |
| run: | | |
| cd .. | |
| cp env.example .env | |
| - name: Test | |
| run: sbt reformJS/test |