mirror of
https://github.com/kou029w/intro-to-software-testing.git
synced 2025-01-19 00:18:01 +00:00
16 lines
303 B
YAML
16 lines
303 B
YAML
|
name: test
|
||
|
on:
|
||
|
push:
|
||
|
branches-ignore: [main]
|
||
|
jobs:
|
||
|
main:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v2
|
||
|
with: { node-version: lts/*, cache: yarn }
|
||
|
- name: Build
|
||
|
run: |
|
||
|
yarn install
|
||
|
yarn build
|