Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

chore(deps): update actions/checkout action to v4 #113

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #113

Workflow file for this run

name: Tests
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
# Builds images for target boards.
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20']
node: [18.x]
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Setup Node.JS ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Yarn install
run: yarn install
- name: Build Javascript
run: yarn run build
- name: Lint Javascript
run: yarn run lint
- name: Test Js
run: yarn run test
- name: Release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release