Skip to content

Bump the github-actions group with 3 updates #1207

Bump the github-actions group with 3 updates

Bump the github-actions group with 3 updates #1207

Workflow file for this run

name: Test
permissions:
contents: read
on: [push, pull_request]
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
#os: [macos-latest, windows-latest, ubuntu-latest]
os: [ubuntu-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 20.6.1
- name: yarn install
run: |
yarn install --frozen-lockfile --network-timeout 300000
- name: yarn test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yarn package
yarn lint
yarn test