Skip to content

Bump actions/checkout from 4.1.6 to 4.1.7 in the github-actions group… #1212

Bump actions/checkout from 4.1.6 to 4.1.7 in the github-actions group…

Bump actions/checkout from 4.1.6 to 4.1.7 in the github-actions group… #1212

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@692973e3d937129bcbf40652eb9f2f61becf3332
- 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