Skip to content

Bump the github-actions group with 2 updates #1252

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #1252

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@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
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