Skip to content

build(deps): bump actions/checkout from 3.5.3 to 3.6.0 #500

build(deps): bump actions/checkout from 3.5.3 to 3.6.0

build(deps): bump actions/checkout from 3.5.3 to 3.6.0 #500

Workflow file for this run

name: JS
on:
pull_request:
paths:
- .github/workflows/js.yml
- bin/web*
- web/app/**
permissions:
contents: read
jobs:
js-web-test:
timeout-minutes: 30
runs-on: ubuntu-20.04
container:
image: node:14-stretch
env:
NODE_ENV: test
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
- name: Yarn setup
shell: bash
run: |
bin/scurl --retry 2 https://yarnpkg.com/install.sh | bash -s -- --version 1.21.1 --network-concurrency 1
echo PATH="$HOME/.yarn/bin:$PATH" >> "$GITHUB_ENV"
- run: bin/web --frozen-lockfile
- run: bin/web test --reporters="jest-progress-bar-reporter" --reporters="./gh_ann_reporter.js"